Browse Source

added to pip

pull/1/head
arnaucode 6 years ago
parent
commit
e2ce15ccb5
4 changed files with 31 additions and 2 deletions
  1. +3
    -0
      .gitignore
  2. +15
    -2
      README.md
  3. +1
    -0
      provoj/__init__.py
  4. +12
    -0
      setup.py

+ 3
- 0
.gitignore

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

+ 15
- 2
README.md

@ -1,6 +1,19 @@
# 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
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
```python
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

provoj.py → provoj/__init__.py

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

+ 12
- 0
setup.py

@ -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']
)

Loading…
Cancel
Save