OLD | NEW |
1 Requests: HTTP for Humans | 1 Requests: HTTP for Humans |
2 ========================= | 2 ========================= |
3 | 3 |
| 4 .. image:: https://badge.fury.io/py/requests.png |
| 5 :target: http://badge.fury.io/py/requests |
4 | 6 |
5 .. image:: https://travis-ci.org/kennethreitz/requests.png?branch=master | 7 .. image:: https://travis-ci.org/kennethreitz/requests.png?branch=master |
6 :target: https://travis-ci.org/kennethreitz/requests | 8 :target: https://travis-ci.org/kennethreitz/requests |
7 | 9 |
8 .. image:: https://pypip.in/d/requests/badge.png | 10 .. image:: https://pypip.in/d/requests/badge.png |
9 :target: https://crate.io/packages/requests/ | 11 :target: https://crate.io/packages/requests/ |
10 | 12 |
11 Requests is an Apache2 Licensed HTTP library, written in Python, for human | 13 Requests is an Apache2 Licensed HTTP library, written in Python, for human |
12 beings. | 14 beings. |
13 | 15 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 - Keep-Alive & Connection Pooling | 47 - Keep-Alive & Connection Pooling |
46 - Sessions with Cookie Persistence | 48 - Sessions with Cookie Persistence |
47 - Browser-style SSL Verification | 49 - Browser-style SSL Verification |
48 - Basic/Digest Authentication | 50 - Basic/Digest Authentication |
49 - Elegant Key/Value Cookies | 51 - Elegant Key/Value Cookies |
50 - Automatic Decompression | 52 - Automatic Decompression |
51 - Unicode Response Bodies | 53 - Unicode Response Bodies |
52 - Multipart File Uploads | 54 - Multipart File Uploads |
53 - Connection Timeouts | 55 - Connection Timeouts |
54 - Thread-safety | 56 - Thread-safety |
| 57 - HTTP(S) proxy support |
55 | 58 |
56 | 59 |
57 Installation | 60 Installation |
58 ------------ | 61 ------------ |
59 | 62 |
60 To install requests, simply: | 63 To install Requests, simply: |
61 | 64 |
62 .. code-block:: bash | 65 .. code-block:: bash |
63 | 66 |
64 $ pip install requests | 67 $ pip install requests |
65 | 68 |
66 Or, if you absolutely must: | 69 Or, if you absolutely must: |
67 | 70 |
68 .. code-block:: bash | 71 .. code-block:: bash |
69 | 72 |
70 $ easy_install requests | 73 $ easy_install requests |
71 | 74 |
72 But, you really shouldn't do that. | 75 But, you really shouldn't do that. |
73 | 76 |
74 | 77 |
75 Documentation | 78 Documentation |
76 ------------- | 79 ------------- |
77 | 80 |
78 Documentation is available at http://docs.python-requests.org/. | 81 Documentation is available at http://docs.python-requests.org/. |
79 | 82 |
80 | 83 |
81 Contribute | 84 Contribute |
82 ---------- | 85 ---------- |
83 | 86 |
84 #. Check for open issues or open a fresh issue to start a discussion around a fe
ature idea or a bug. There is a Contributor Friendly tag for issues that should
be ideal for people who are not very familiar with the codebase yet. | 87 #. Check for open issues or open a fresh issue to start a discussion around a fe
ature idea or a bug. There is a `Contributor Friendly`_ tag for issues that shou
ld be ideal for people who are not very familiar with the codebase yet. |
85 #. Fork `the repository`_ on Github to start making your changes to the **master
** branch (or branch off of it). | 88 #. If you feel uncomfortable or uncertain about an issue or your changes, feel
free to email @sigmavirus24 and he will happily help you via email, Skype, remo
te pairing or whatever you are comfortable with. |
| 89 #. Fork `the repository`_ on GitHub to start making your changes to the **master
** branch (or branch off of it). |
86 #. Write a test which shows that the bug was fixed or that the feature works as
expected. | 90 #. Write a test which shows that the bug was fixed or that the feature works as
expected. |
87 #. Send a pull request and bug the maintainer until it gets merged and published
. :) Make sure to add yourself to AUTHORS_. | 91 #. Send a pull request and bug the maintainer until it gets merged and published
. :) Make sure to add yourself to AUTHORS_. |
88 | 92 |
89 .. _`the repository`: http://github.com/kennethreitz/requests | 93 .. _`the repository`: http://github.com/kennethreitz/requests |
90 .. _AUTHORS: https://github.com/kennethreitz/requests/blob/master/AUTHORS.rst | 94 .. _AUTHORS: https://github.com/kennethreitz/requests/blob/master/AUTHORS.rst |
| 95 .. _Contributor Friendly: https://github.com/kennethreitz/requests/issues?direct
ion=desc&labels=Contributor+Friendly&page=1&sort=updated&state=open |
OLD | NEW |