mirror of
https://github.com/kennethreitz/requests.git
synced 2026-06-05 14:50:16 +00:00
64 lines
2.4 KiB
ReStructuredText
64 lines
2.4 KiB
ReStructuredText
Modules
|
|
=======
|
|
|
|
- `requests-oauth-hook <https://github.com/maraujop/requests-oauth-hook>`_, adds OAuth support to Requests.
|
|
- `FacePy <https://github.com/jgorset/facepy>`_, a Python wrapper to the Facebook API.
|
|
- `robotframework-requests <https://github.com/bulkan/robotframework-requests>`_, a Robot Framework API wrapper.
|
|
- `fullerene <https://github.com/bitprophet/fullerene>`_, a Graphite Dashboard.
|
|
- `urbanairship-python <https://github.com/benjaminws/urbanairship-python>`_, a fork of the Urban Airship API wrapper.
|
|
- `WhitespaceBot <https://github.com/Gunio/WhitespaceBot/>`_, a project that automatically forks repos, strips trailing whitespace, and sends a pull request.
|
|
|
|
Articles & Talks
|
|
================
|
|
- `Python for the Web <http://gun.io/blog/python-for-the-web/>`_ teaches how to use Python to interact with the web, using Requests.
|
|
- `Daniel Greenfield's Review of Requests <http://pydanny.blogspot.com/2011/05/python-http-requests-for-humans.html>`_
|
|
- `My 'Python for Humans' talk <http://python-for-humans.heroku.com>`_ ( `audio <http://codeconf.s3.amazonaws.com/2011/pycodeconf/talks/PyCodeConf2011%20-%20Kenneth%20Reitz.m4a>`_ )
|
|
- `Issac Kelly's 'Consuming Web APIs' talk <http://issackelly.github.com/Consuming-Web-APIs-with-Python-Talk/slides/slides.html>`_
|
|
- `Blog post about Requests via Yum <http://arunsag.wordpress.com/2011/08/17/new-package-python-requests-http-for-humans/>`_
|
|
- `Russian blog post introducing Requests <http://habrahabr.ru/blogs/python/126262/>`_
|
|
|
|
|
|
Integrations
|
|
============
|
|
|
|
ScraperWiki
|
|
------------
|
|
|
|
`ScraperWiki <https://scraperwiki.com/>`_ is an excellent service that allows
|
|
you to run Python, Ruby, and PHP scraper scripts on the web. Now, Requests
|
|
v0.6.1 is available to use in your scrapers!
|
|
|
|
To give it a try, simply::
|
|
|
|
import requests
|
|
|
|
|
|
Managed Packages
|
|
================
|
|
|
|
Requests is available in a number of popular package formats. Of course,
|
|
the ideal way to install Requests is via The Cheeseshop.
|
|
|
|
|
|
Ubuntu & Debian
|
|
---------------
|
|
|
|
Requests is available installed as a Debian package! Debian Etch Ubuntu, since Oneiric::
|
|
|
|
$ apt-get install python-requests
|
|
|
|
Unfortunately, the most recent version available is v0.5.0. If you're on the
|
|
Debian Python Package team, I'd love an update of that :)
|
|
|
|
|
|
Fedora and RedHat
|
|
-----------------
|
|
|
|
You can easily install Requests v0.6.1 with yum on rpm-based systems::
|
|
|
|
$ yum install python-requests
|
|
|
|
|
|
|
|
|