HTTP REST client, simplified for Python
Project description
Quickly and easily access any RESTful or RESTful-like API.
If you are looking for the SendGrid API client library, please see this repo.
Table of Contents
# Installation
Prerequisites
Python version 2.6, 2.7, 3.4, 3.5 or 3.6
Install Package
pip install python_http_client
or
easy_install python_http_client
API Key
Store your SendGrid API key in a .env file
cp .env_sample .env
Edit the .env file and add your API key.
# Quick Start
Here is a quick example:
GET /your/api/{param}/call
import python_http_client
global_headers = {"Authorization": "Basic XXXXXXX"}
client = Client(host='base_url', request_headers=global_headers)
client.your.api._(param).call.get()
print response.status_code
print response.headers
print response.body
POST /your/api/{param}/call with headers, query parameters and a request body with versioning.
import python_http_client
global_headers = {"Authorization": "Basic XXXXXXX"}
client = Client(host='base_url', request_headers=global_headers)
query_params={"hello":0, "world":1}
request_headers={"X-Test": "test"}
data={"some": 1, "awesome": 2, "data": 3}
response = client.your.api._(param).call.post(request_body=data,
query_params=query_params,
request_headers=request_headers)
print response.status_code
print response.headers
print response.body
# Usage
# Roadmap
If you are interested in the future direction of this project, please take a look at our milestones. We would love to hear your feedback.
# How to Contribute
We encourage contribution to our projects, please see our CONTRIBUTING guide for details.
Quick links:
Local Setup of the project
The simplest local development workflow is by using docker.
Steps
Install Docker
Run docker-compose build (This builds the container)
Run docker-compose up (This runs tests by default)
# Troubleshooting
Please see our troubleshooting guide for any issues.
# Announcements
All updates to this project is documented in our CHANGELOG.
# Thanks
We were inspired by the work done on birdy and universalclient.
# About
python-http-client is guided and supported by the SendGrid Developer Experience Team.
python-http-client is maintained and funded by SendGrid, Inc. The names and logos for python-http-client are trademarks of SendGrid, Inc.
# License
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 Distribution
Built Distributions
File details
Details for the file python_http_client-3.1.0.tar.gz
.
File metadata
- Download URL: python_http_client-3.1.0.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e430f4b9dd2b621b0051f6a362f103447ea8e267594c602a5c502a0c694ee38 |
|
MD5 | 0fda481d87005c673ba59f71fed8d291 |
|
BLAKE2b-256 | e074e43e494a44e78a1188552aa9dfc2f738cd4089b6f8a18c49f186f2b841a3 |
File details
Details for the file python_http_client-3.1.0-py3-none-any.whl
.
File metadata
- Download URL: python_http_client-3.1.0-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.14.0 pkginfo/1.5.0.1 requests/2.12.1 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84267d8dcb7bcdf4c5cef321a533cc584c5b52159d4a4d3d4139bfed347b8006 |
|
MD5 | f8bbcf9c0caf1a26eedde014b4b39765 |
|
BLAKE2b-256 | 5c5c9e0cde562757bdb385a3644235e7c4da6f76c8a43d573eb76384ef461d40 |
File details
Details for the file python_http_client-3.1.0-py2-none-any.whl
.
File metadata
- Download URL: python_http_client-3.1.0-py2-none-any.whl
- Upload date:
- Size: 12.3 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.14.0 pkginfo/1.5.0.1 requests/2.12.1 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a5855902cede46775912d418a23f05fe6f5d60371df1084bef8c219218ce8d9 |
|
MD5 | d2a2b2423419b712a93afea79cd975ad |
|
BLAKE2b-256 | 1ea67c666dd53c6ed124185c9146372534c4f75ebcfa5f716e6fa5bdfb8de900 |