Skip to main content

RESTful Client for tornado

Project description

https://travis-ci.org/mosquito/rest-client.svg Latest Version https://img.shields.io/pypi/wheel/rest-client.svg https://img.shields.io/pypi/pyversions/rest-client.svg https://img.shields.io/pypi/l/rest-client.svg

RESTful Client for tornado with support cookies.

Example:

# encoding: utf-8
from tornado.ioloop import IOLoop
from tornado.gen import coroutine, Return
from rest_client.async import RESTClient

io_loop = IOLoop.current()

@coroutine
def repo_list():
    client = RESTClient(headers={'User-Agent': 'curl/7.43.0'})
    # check api
    yield client.get('https://api.github.com/users/octocat/orgs')

    response = yield client.get('https://api.github.com/repos/vmg/redcarpet/issues?state=closed')
    data = sum(map(lambda x: x.comments, response.body))
    print('Total comments: {0}'.format(data))

exit(io_loop.run_sync(repo_list))

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

rest-client-0.3.7.tar.gz (4.4 kB view details)

Uploaded Source

File details

Details for the file rest-client-0.3.7.tar.gz.

File metadata

File hashes

Hashes for rest-client-0.3.7.tar.gz
Algorithm Hash digest
SHA256 976b4f2f2d0798141e6a31e91a0493fa0c1dcf6676df013368be1fc341745d06
MD5 4ed19b25223f22773d705bb57ae151b8
BLAKE2b-256 59fedbd5f77be43dd865579de2d31ed084cb6bc04ba1a25c39de9ea734f21fa1

See more details on using hashes here.

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