API package for testing purpose
Project description
API
This package is used for REST API classbased, author used it for API flow testing.
JSON body response will be converted to python data type. Made it easier for you to use.
This package is extending python requests library https://github.com/requests/requests/
How to install
$ pip3 install api-nichotined
How to distribute to pypi
$ python setup.py sdist bdist_wheel && python -m twine upload dist/*
Usage example
from API import Get, Post from import_file import host post_body = { "name": "Nicholas Frederick" } class GetRequest(Get): def __init__(self, latitude: str, longitude: str): super().__init__() self.url = "{0}/dummy?latitude={1}&longitude={2}".format(host["serviceHost"], latitude, longitude) self.headers = { "Content-Type": "application/json", "Authorization": "TOKEN" } self.execute() class PostRequest(Post): def __init__(self, body: Data): super().__init__() self.url = "{0}/dummy".format(host['serviceHost']) self.headers = { "Content-Type": "application/json", "Authorization": "TOKEN" } self.json = body self.execute() if __name__ == "__main__": get_data = GetRequest('106', '80') post_data = PostRequest(post_body) assert get_data.address_name == "somewhere" assert post_data.status_code == 200
Mocker usage
Beforehand, edit or extend mocker.py
and add your desired response on that file.
$ mitmproxy -p 8888 -s API/modules/mocker/mocker.py
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size api_nichotined-1.1.1-py3-none-any.whl (11.4 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
Filename, size api-nichotined-1.1.1.tar.gz (6.6 kB) | File type Source | Python version None | Upload date | Hashes View |
Close
Hashes for api_nichotined-1.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5fa5b0d585436d06acf7b0cd01b3936115bd2e4de71991cfa458d4874278e51 |
|
MD5 | 74afe14f2f46f6ac951e3e41daadf55b |
|
BLAKE2-256 | aee89079d80a21dbafb22526c02f06c1159a4335ed57ce723806afadc36f989e |