This library implements wrapper for different python interfaces
Project description
# Python-clients
This library implements wrapper for different python interfaces. We have:
sync and async http client (requests and aiohttp libraries)
Each client is class with request method and class implemented base class of any custom methods. This is very simple. But you can encapsulate inner structure of requests.
# Installation
We use python3.7. Installation is a very simple:
pip install python-clients
# Example
You define new client for specify endpoint:
client = http.AsyncClient(url)
Next, you define the first method:
- class MyCustomFirstMethod(http.Method):
url _ = ‘/’ m_type = ‘POST’
Next, you define the second method:
- class MyCustomSecondMethod(http.Method):
url _ = ‘/%s’ count = 1 m_type = ‘POST’
- def __init __ (self, arg1, arg2, arg3):
http.Method. __init __ (self, arg1) # arg1 pass into self.url _ by position self.params = {‘args1’: arg1} self.body = {‘arg2’: arg2}
Next, you can take request:
m = MyCustomFirstMethod() resp, status_code = await client.request(m) assert status_code == 200 m = MyCustomSecondMethod(arg1=1, arg2=2, arg3=3) resp, status_code = await client.request(m) assert status_code == 204
# Development
You can install development requirements:
pip install -r requirements/dev
This is extension of package version of requirements
# Test
Before tests, you need to start mock server:
PYTHONPATH=. python tests/server/mock_server.py
After that, you can run all tests:
pytest tests
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.
Source Distributions
Built Distribution
File details
Details for the file python_clients-1.2.1-py3-none-any.whl
.
File metadata
- Download URL: python_clients-1.2.1-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 379cb4cd08a69df248f1085ea2f690e6628254b508339b95dc4c203ed38fe661 |
|
MD5 | dd5c8e6051b8373a82f3c64adebde7d5 |
|
BLAKE2b-256 | 12f2cb6f3b0423b29226067f5193655ff5e5aca11a8ac2fd68d5ffb527854956 |