An HTTP asynchronous client.
Project description
HTTPlus
An HTTP asynchronous client.
Instalation
pip install httplus
Basic Usage
The simplest request using get method is showed below.
import httplus
...
client = httplus.Client()
res = await client.get('http://someserver/api/collection')
print(res.status)
# 200
data = res.json()
# {...}
A request is executed by Client instance class. The Client class has get, post, put, delete, options, patch and head methods to do requests.
Examples
Sending data through POST request
import httplus
...
data = {
'name': 'Vink',
'surname': 'Blaster'
}
client = httplus.Client()
res = await client.post('http://someserver/api/customers', data=data)
print(res.status)
# 200
The data parameter can be a dict, list or a binary object. A dict or a list passed by data param will be interpreted like JSON format data. If a binary data like a pdf or an image file is been sending, a header content mime type need to be informed by headers param.
import httplus
...
image = b'<some_image_binary>'
headers = {
'Content-Type': 'image/png'
}
url = 'http://someserver/api/books'
...
client = httplus.Client()
res = await client.post(url=url, data=image, headers=headers)
print(res.status)
# 200
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
httplus-0.1.1.tar.gz
(4.1 kB
view hashes)