summaryrefslogtreecommitdiff
path: root/docs/user
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Say that we use a dictionary of strings.Cory Benfield2017-02-081-2/+2
|
* Explicitly mention OpenID ConnectNick Coghlan2017-01-101-5/+7
| | | | | | | OAuth 2 is the authentication protocol underpinning OpenID Connect. Mention that explicitly for the benefit of folks looking for information on using requests with OpenID Connect that don't yet know that OAuth 2 is the relevant underlying authentication protocol.
* Improve discoverability of OAuth 2 supportNick Coghlan2017-01-101-0/+14
| | | | | | | The previous summary gave the impression that requests-oauthlib only supports OAuth 1. This updates makes it clear that it also supports OAuth 2, and links directly to the use case specific authentication flow guides.
* updating https demo urlsNate Prewitt2017-01-041-3/+3
|
* streaming doc clarificationNate Prewitt2016-11-211-2/+3
|
* correct backtick formattingAidan Feldman2016-11-171-1/+1
|
* clarify that the `chunk_size` is optional when streaming to a fileAidan Feldman2016-11-171-1/+1
|
* Fixed readme typo - 'site' should be 'domain'Greg McLeod2016-11-151-2/+2
|
* Amplifies the timeout warning in the docs.Mike Lissner2016-11-141-1/+3
| | | Partially addresses #3070.
* documentation on encoding fallback for streamingNate Prewitt2016-11-141-0/+14
|
* adding decoding requirement for Python 3Nate Prewitt2016-11-141-1/+2
|
* Formatted the example to fix the color highlightingBård Aase2016-10-311-1/+1
|
* 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-172-2/+2
|
* Adding notes about Request's timeout behavior.Maik Himstedt2016-08-172-2/+4
|
* docs updatesNate Prewitt2016-08-142-41/+39
|
* fix grammer mistakes in QuickstartJiayuan Zhang2016-08-131-3/+3
|
* Add a bit about RequestsCookieJar to Cookies sectionMichael2016-08-031-0/+13
|
* in python3.x not have StringIOZeusw2016-07-141-1/+1
| | | I think, should such an amendment.
* updating documentation to reflect decision of #3386Nate Prewitt2016-07-071-0/+1
|
* Merge pull request #3297 from davidfischer/http-error-specificsKenneth Reitz2016-06-081-2/+3
|\ | | | | Note how HTTPErrors are raised
| * Note how HTTPErrors are raisedDavid Fischer2016-06-081-2/+3
| |
* | 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-282-2/+2
|
* 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.
* lettersKenneth Reitz2016-02-191-4/+4
|
* improve further advanced.rstKenneth Reitz2016-02-191-6/+2
|
* improve advanced.rstKenneth Reitz2016-02-191-7/+8
|
* cleanup quickstartKenneth Reitz2016-02-191-8/+22
|
* cleanup advanced.rstKenneth Reitz2016-02-191-15/+32
| | | | single-quoted strings, yo!
* docs cleanupKenneth Reitz2016-02-191-2/+3
|
* improved installation instructionsKenneth Reitz2016-02-181-18/+10
|
* Fixed markup for/rendering of list in section "Custom Headers".Jochen Kupperschmidt2016-01-301-2/+2
|
* 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".
* Docs: clarify the precedence of `auth=` over `netrc`Isa Hassen2015-12-212-3/+5
| | | | | | | | | | | | This closes #2062 by clarifying in the docs which auth header takes precedence: 1st auth= 2nd .netrc 3rd headers= This precedence order is already tested in test_requests.py, in the test_basicauth_with_netrc method. Perhaps we should add further tests for non-basic auth schemes.
* Remove redundant json import.unknown2015-11-121-1/+0
|
* Add support for a directory of CAsCory Benfield2015-11-051-1/+1
|
* Merge pull request #2825 from Lukasa/universal_newlinesIan Cordasco2015-10-242-1/+27
|\ | | | | Add warnings about text/binary mode files.
| * Add warnings about text/binary mode files.Cory Benfield2015-10-142-1/+27
| |