added to pip

This commit is contained in:
arnaucode
2018-03-12 21:19:51 +01:00
parent cc61bfbc02
commit e2ce15ccb5
4 changed files with 31 additions and 2 deletions

3
.gitignore vendored
View File

@@ -1,2 +1,5 @@
__pycache__ __pycache__
*.pyc *.pyc
provoj.egg-info
dist
build

View File

@@ -1,6 +1,19 @@
# provoj # provoj
Simple library to check the endpoints of an RESTful API. Simple library to test the endpoints of an RESTful API.
Check values, integrated with requests python library.
For python version>3
## Installation
Requires to have installed 'requests' library.
Install provoj by:
```
pip install provoj
```
### Usage ### Usage
Import the provoj library, and the requests library Import the provoj library, and the requests library
@@ -51,7 +64,7 @@ test.length("checking the length of the array animals", animals, 3)# test.length
Check for request status Check for request status
```python ```python
r = requests.get("https://api.github.com/users/arnaucode/repos") r = requests.get("https://api.github.com/users/arnaucode/repos")
test.status("get api.github.com/users/arnaucode/repos", r)# test.status(check description, request_response) test.rStatus("get api.github.com/users/arnaucode/repos", r)# test.rStatus(check description, request_response)
``` ```
### Full example ### Full example

View File

@@ -1,3 +1,4 @@
#!/usr/bin/env python
import math import math
import datetime import datetime

12
setup.py Normal file
View File

@@ -0,0 +1,12 @@
from setuptools import setup
setup(
name='provoj',
packages=['provoj'],
description='Simple library to test the endpoints of an RESTful API.',
url='https://github.com/arnaucode/provoj',
author='arnaucode',
author_email='arnaucode@gmail.com',
version='0.0.0.1',
scripts=['provoj/__init__.py']
)