| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Certifi.io broken | Nick Timkovich | 2018-05-14 | 1 | -1/+1 |
| | | | | http://certifi.io/ -> https://certifiio.readthedocs.io/ | ||||
| * | Spelling. | Victor Shih | 2018-05-07 | 1 | -1/+1 |
| | | |||||
| * | Update all pypi.python.org URLs to pypi.org | Jon Dufresne | 2018-04-18 | 1 | -1/+1 |
| | | | | | | | For details on the new PyPI, see the blog post: https://pythoninsider.blogspot.ca/2018/04/new-pypi-launched-legacy-pypi-shutting.html | ||||
| * | Remove remaining references to removed, vendored packages (#4499) | Jon Dufresne | 2018-02-17 | 1 | -1/+1 |
| | | | | | As the vendored packages were removing in version 2.16, all remaining doc references should be replaced with newer practices. | ||||
| * | Clarify docs that Requests always uses certs from certifi | Jon Dufresne | 2018-02-14 | 1 | -9/+8 |
| | | | | | | | | | | Since commit 0d7de6430eef0cf09f9662746daf0c28d83f144e, certifi is always used for certificates. Certify became a hard dependency of the package in 628633143d5b8590b1dbdf5371fe81fb8250dffd. Now update the docs to clarify that Request will always use certificates from certifi. | ||||
| * | Trim trialing white space throughout the project | Jon Dufresne | 2018-02-05 | 1 | -5/+5 |
| | | | | | | | Many editors clean up trailing white space on save. By removing it all in one go, it helps keep future diffs cleaner by avoiding spurious white space changes on unrelated lines. | ||||
| * | Prefer https over http for links in the documentation | Jon Dufresne | 2018-01-06 | 1 | -3/+3 |
| | | | | | | | - Fixed Read the Docs links - Fixed GitHub links - Fixed PyPI links | ||||
| * | Add an example of two hooks | Alex Chan | 2017-10-24 | 1 | -0/+12 |
| | | |||||
| * | Clarify that a Session can have multiple hooks | Alex Chan | 2017-10-23 | 1 | -2/+5 |
| | | |||||
| * | Switch to using dict literals, it's 2017 | Alex Chan | 2017-10-23 | 1 | -3/+3 |
| | | |||||
| * | Add something to the docs about hooks on Session() | Alex Chan | 2017-10-23 | 1 | -0/+9 |
| | | |||||
| * | Update advanced.rst | Kenneth Reitz | 2017-09-04 | 1 | -0/+2 |
| | | |||||
| * | Update advanced.rst | Kenneth Reitz | 2017-09-04 | 1 | -1/+2 |
| | | |||||
| * | fixed syntax for code block for prepared requests | Pascal Van Acker | 2017-08-28 | 1 | -1/+1 |
| | | |||||
| * | Add environment info to prepared requests | Pascal Van Acker | 2017-08-28 | 1 | -0/+19 |
| | | | | When using prepared requests, the environment is not taken into account. This should be reflected in the documentation. | ||||
| * | Fix issue #3863 | NikosVlagoidis | 2017-08-09 | 1 | -1/+1 |
| | | |||||
| * | Update advanced.rst | NikosVlagoidis | 2017-08-09 | 1 | -3/+1 |
| | | |||||
| * | Fixes issue #3863 | Nikolaos Vlagoidis | 2017-08-09 | 1 | -0/+4 |
| | | |||||
| * | Allow Requests.Response to be used as a context manager | Ed Morley | 2017-06-06 | 1 | -6/+2 |
| | | | | | | | | | | | | | | This saves having to wrap the call to requests with `contextlib.closing()`, allowing it to be used directly in a `with` statement, like so: ``` with requests.get('http://httpbin.org/get', stream=True) as r: # Do things with the response here. ``` Fixes #4136. | ||||
| * | new requests namespace | Kenneth Reitz | 2017-05-29 | 1 | -6/+6 |
| | | |||||
| * | fix lack of taste | Kenneth Reitz | 2017-05-21 | 1 | -1/+1 |
| | | | | | Signed-off-by: Kenneth Reitz <me@kennethreitz.org> | ||||
| * | Update advanced.rst | Anthony Shaw | 2017-04-02 | 1 | -0/+3 |
| | | | | break client side certificates out into a sub header | ||||
| * | Change apostrophe placement in advanced.rst | Brian Schiller | 2017-03-14 | 1 | -1/+1 |
| | | | | See Rule2a on http://www.grammarbook.com/punctuation/apostro.asp | ||||
| * | updating https demo urls | Nate Prewitt | 2017-01-04 | 1 | -3/+3 |
| | | |||||
| * | documentation on encoding fallback for streaming | Nate Prewitt | 2016-11-14 | 1 | -0/+14 |
| | | |||||
| * | adding decoding requirement for Python 3 | Nate Prewitt | 2016-11-14 | 1 | -1/+2 |
| | | |||||
| * | Let's use capitals. | Cory Benfield | 2016-10-12 | 1 | -1/+1 |
| | | |||||
| * | Add Documentation for custom methods | Stewart Polley | 2016-10-08 | 1 | -0/+18 |
| | | |||||
| * | fixes broken link on documentation page | Om Prakash | 2016-09-28 | 1 | -1/+1 |
| | | | | | Issue #3603 | ||||
| * | Add persistent examples | Richard van den Berg | 2016-08-26 | 1 | -0/+10 |
| | | |||||
| * | Changes to documentation based on comments and correction of list of authors. | Maik | 2016-08-17 | 1 | -1/+1 |
| | | |||||
| * | Adding notes about Request's timeout behavior. | Maik Himstedt | 2016-08-17 | 1 | -1/+2 |
| | | |||||
| * | docs updates | Nate Prewitt | 2016-08-14 | 1 | -31/+29 |
| | | |||||
| * | compensate for lack of taste | Kenneth Reitz | 2016-06-09 | 1 | -4/+4 |
| | | |||||
| * | Document header ordering. (#3295) | Cory Benfield | 2016-06-08 | 1 | -1/+8 |
| | | |||||
| * | Merge pull request #3173 from Lukasa/socks-proxy-docs | Ian Cordasco | 2016-05-05 | 1 | -0/+23 |
| |\ | | | | | Add section on SOCKS proxies. | ||||
| | * | Add section on SOCKS proxies. | Cory Benfield | 2016-05-03 | 1 | -0/+23 |
| | | | |||||
| * | | docs: Add a note about SSL c_rehash | Lukas Vacek | 2016-05-02 | 1 | -0/+3 |
| |/ | |||||
| * | Update readthedocs links. | Rémy HUBSCHER | 2016-04-28 | 1 | -1/+1 |
| | | |||||
| * | Clarify that SSL verification is on by default | Kevin Burke | 2016-03-17 | 1 | -7/+8 |
| | | | | | | | | | | | | | | | Generally if a kwarg is present it indicates that an option other than the default is being specified. Putting `verify=True` in the first code sample for SSL confused me, because it seemed to indicate that you had to specify `verify=True` to get SSL verification. The opposite is true; SSL verification is turned on by default and you have to specify `verify=False` to opt out of SSL verification. Updates the docs to make this more clear. Furthermore, connections to https://kennethreitz.com currently time out instead of presenting an invalid certificate, so I replaced this domain with https://requestb.in, which presents the same error message as is currently there. | ||||
| * | improve further advanced.rst | Kenneth Reitz | 2016-02-19 | 1 | -6/+2 |
| | | |||||
| * | improve advanced.rst | Kenneth Reitz | 2016-02-19 | 1 | -7/+8 |
| | | |||||
| * | cleanup advanced.rst | Kenneth Reitz | 2016-02-19 | 1 | -15/+32 |
| | | | | | single-quoted strings, yo! | ||||
| * | docs cleanup | Kenneth Reitz | 2016-02-19 | 1 | -2/+3 |
| | | |||||
| * | Warn about encrypted keys in the docs. | Cory Benfield | 2016-01-27 | 1 | -0/+3 |
| | | |||||
| * | advanced: use "client.*" to designate client certificate | Vincent Bernat | 2015-12-28 | 1 | -2/+2 |
| | | | | Using "server.crt" is confusing as one may try to put the server certificate while this is really the client certificate that should be put here. Instead, use "client.cert", "client.key" and "client.pem". | ||||
| * | Add support for a directory of CAs | Cory Benfield | 2015-11-05 | 1 | -1/+1 |
| | | |||||
| * | Add warnings about text/binary mode files. | Cory Benfield | 2015-10-14 | 1 | -1/+19 |
| | | |||||
| * | docs: move CA Certificates next to SSL Cert Verification | Jim Browne | 2015-09-11 | 1 | -22/+22 |
| | | |||||
| * | docs: Fix typos | Jakub Wilk | 2015-09-10 | 1 | -1/+1 |
| | | |||||
