Lightweight requests wrapper for REST API calls
Project description
Following the same philosophy of Requests module (REST) ApiConsumer is here to make your life easier.
Are you lazy enough to configure authentication for every single request? How about handling errors? Wouldn’t it be great if all that could be done in 2 lines?
How to use
Behold the power of ApiConsumer:
>>> from apiconsumer import ApiConsumer
>>> my_api = ApiConsumer(url='https://myapi.com', extra_headers={'Authorization': 'JWT mytoken'})
>>> users = my_api.get_users()
Making POST request is also easy:
>>> new_user = my_api.post_users(data={'email': 'someguy@something.com', 'password': 'correct-horse-battery-staple'})
How to install
$ pip install apiconsumer
Contribute
Be our guest. We’d like to see your awesome ideas. Just fork the repo, create a branch and create pull request.
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
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file apiconsumer-1.0.0b3-py2.py3-none-any.whl
.
File metadata
- Download URL: apiconsumer-1.0.0b3-py2.py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16e75fb055f0e75f6495641644abc1dd3315e7c9232b0f33678a8162a01d38c2 |
|
MD5 | 3fec7f336e20d2030cd811c0d56566aa |
|
BLAKE2b-256 | 28e51d7b61ec3ee657d96fd1e96577771b318525b6cfda9b16b83981a9af166f |