summaryrefslogtreecommitdiff
path: root/docs/user/advanced.rst
Commit message (Collapse)AuthorAgeFilesLines
* Certifi.io brokenNick Timkovich2018-05-141-1/+1
| | | http://certifi.io/ -> https://certifiio.readthedocs.io/
* Spelling.Victor Shih2018-05-071-1/+1
|
* Update all pypi.python.org URLs to pypi.orgJon Dufresne2018-04-181-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 Dufresne2018-02-171-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 certifiJon Dufresne2018-02-141-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 projectJon Dufresne2018-02-051-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 documentationJon Dufresne2018-01-061-3/+3
| | | | | | - Fixed Read the Docs links - Fixed GitHub links - Fixed PyPI links
* Add an example of two hooksAlex Chan2017-10-241-0/+12
|
* Clarify that a Session can have multiple hooksAlex Chan2017-10-231-2/+5
|
* Switch to using dict literals, it's 2017Alex Chan2017-10-231-3/+3
|
* Add something to the docs about hooks on Session()Alex Chan2017-10-231-0/+9
|
* Update advanced.rstKenneth Reitz2017-09-041-0/+2
|
* Update advanced.rstKenneth Reitz2017-09-041-1/+2
|
* fixed syntax for code block for prepared requestsPascal Van Acker2017-08-281-1/+1
|
* Add environment info to prepared requestsPascal Van Acker2017-08-281-0/+19
| | | When using prepared requests, the environment is not taken into account. This should be reflected in the documentation.
* Fix issue #3863NikosVlagoidis2017-08-091-1/+1
|
* Update advanced.rstNikosVlagoidis2017-08-091-3/+1
|
* Fixes issue #3863Nikolaos Vlagoidis2017-08-091-0/+4
|
* Allow Requests.Response to be used as a context managerEd Morley2017-06-061-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 namespaceKenneth Reitz2017-05-291-6/+6
|
* fix lack of tasteKenneth Reitz2017-05-211-1/+1
| | | | Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
* Update advanced.rstAnthony Shaw2017-04-021-0/+3
| | | break client side certificates out into a sub header
* Change apostrophe placement in advanced.rstBrian Schiller2017-03-141-1/+1
| | | See Rule2a on http://www.grammarbook.com/punctuation/apostro.asp
* updating https demo urlsNate Prewitt2017-01-041-3/+3
|
* documentation on encoding fallback for streamingNate Prewitt2016-11-141-0/+14
|
* adding decoding requirement for Python 3Nate Prewitt2016-11-141-1/+2
|
* Let's use capitals.Cory Benfield2016-10-121-1/+1
|
* Add Documentation for custom methodsStewart Polley2016-10-081-0/+18
|
* fixes broken link on documentation pageOm Prakash2016-09-281-1/+1
| | | | Issue #3603
* Add persistent examplesRichard van den Berg2016-08-261-0/+10
|
* Changes to documentation based on comments and correction of list of authors.Maik2016-08-171-1/+1
|
* Adding notes about Request's timeout behavior.Maik Himstedt2016-08-171-1/+2
|
* docs updatesNate Prewitt2016-08-141-31/+29
|
* compensate for lack of tasteKenneth Reitz2016-06-091-4/+4
|
* Document header ordering. (#3295)Cory Benfield2016-06-081-1/+8
|
* Merge pull request #3173 from Lukasa/socks-proxy-docsIan Cordasco2016-05-051-0/+23
|\ | | | | Add section on SOCKS proxies.
| * Add section on SOCKS proxies.Cory Benfield2016-05-031-0/+23
| |
* | docs: Add a note about SSL c_rehashLukas Vacek2016-05-021-0/+3
|/
* Update readthedocs links.Rémy HUBSCHER2016-04-281-1/+1
|
* Clarify that SSL verification is on by defaultKevin Burke2016-03-171-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.rstKenneth Reitz2016-02-191-6/+2
|
* improve advanced.rstKenneth Reitz2016-02-191-7/+8
|
* cleanup advanced.rstKenneth Reitz2016-02-191-15/+32
| | | | single-quoted strings, yo!
* docs cleanupKenneth Reitz2016-02-191-2/+3
|
* Warn about encrypted keys in the docs.Cory Benfield2016-01-271-0/+3
|
* advanced: use "client.*" to designate client certificateVincent Bernat2015-12-281-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 CAsCory Benfield2015-11-051-1/+1
|
* Add warnings about text/binary mode files.Cory Benfield2015-10-141-1/+19
|
* docs: move CA Certificates next to SSL Cert VerificationJim Browne2015-09-111-22/+22
|
* docs: Fix typosJakub Wilk2015-09-101-1/+1
|