mirror of
https://github.com/arnaucube/provoj.git
synced 2026-02-07 03:36:46 +01:00
added to pip
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,2 +1,5 @@
|
||||
__pycache__
|
||||
*.pyc
|
||||
provoj.egg-info
|
||||
dist
|
||||
build
|
||||
|
||||
17
README.md
17
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
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
#!/usr/bin/env python
|
||||
import math
|
||||
import datetime
|
||||
|
||||
12
setup.py
Normal file
12
setup.py
Normal 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']
|
||||
)
|
||||
Reference in New Issue
Block a user