RESTful Client for tornado
Project description
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
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
rest-client-0.3.4.tar.gz
(4.4 kB
view details)
File details
Details for the file rest-client-0.3.4.tar.gz
.
File metadata
- Download URL: rest-client-0.3.4.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc79412bc198c5f5bf80c2eb05291d050c8fb8334ca2456ed8b2a02134f62aa5 |
|
MD5 | 1b9107eecc859c421e559dbfa6b478b4 |
|
BLAKE2b-256 | 1c086b0aab4e7c00949b3a6cf3d75372484c7237164035fd400fe1ef6e6e60d9 |