Skip to main content

Make aiohttp easier

Project description

ez_aiohttp

The aiohttp wrapper to make it more like requests.

How to use

It is kinda like requests, but it is async. And you need to import aiohttp if you want to use more than GET,POST,PUT,PATCH,DELETE.
This just make it more simple.
Here's an example:

import aiohttp,ez_rq,ez_rq.util

async def main():
    a = ez_rq.get('https://www.google.com')
    print(await a.text())
    b = ez_rq.post('https://www.google.com',data={'a':'b'})
    print(await b.text())
    c = ez_rq.put('https://www.google.com',data={'a':'b'})
    print(await c.text())
    d = ez_rq.patch('https://www.google.com',data={'a':'b'})
    print(await d.text())
    e = ez_rq.delete('https://www.google.com')
    print(await e.text())
    f = await ez_rq.util.json2attr(a) # or you can send the dictionary
    f.a = 'b'
    print(await ez_rq.util.attr2json(f))

etc.
It always return aiohttp.client_reqrep.ClientResponse object.
doc

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

ez_aiohttp-0.1.0.tar.gz (2.0 kB view hashes)

Uploaded Source

Built Distribution

ez_aiohttp-0.1.0-py3-none-any.whl (2.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page