summaryrefslogtreecommitdiff
path: root/docs/user
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
* add comment about json parameter changing content-typeHackbright Student2018-03-161-0/+2
|
* Remove remaining references to removed, vendored packages (#4499)Jon Dufresne2018-02-172-2/+2
| | | | 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-062-8/+8
| | | | | | - Fixed Read the Docs links - Fixed GitHub links - Fixed PyPI links
* Clarify behaviour of `json` parameter.Daniel Roseman2017-11-211-0/+1
| | | | `json` is ignored if `data` or `files` is not empty.
* docs/quickstart: clarify raw response reading.Dave Shawley2017-11-171-0/+8
|
* Corrent HTTP -> HTML in quickstart docTal Einat2017-11-161-1/+1
|
* 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 authentication.rstKenneth Reitz2017-09-041-0/+2
|
* Update quickstart.rstKenneth Reitz2017-09-041-0/+2
|
* Update advanced.rstKenneth Reitz2017-09-041-0/+2
|
* Update install.rstKenneth Reitz2017-09-041-0/+3
|
* Update intro.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.
* Update install.rstKenneth Reitz2017-08-271-4/+4
|
* 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.
* improve installation docsKenneth Reitz2017-05-291-2/+2
|
* improve install docsKenneth Reitz2017-05-291-2/+2
|
* improve installation instructionsKenneth Reitz2017-05-291-1/+2
|
* improve install documentation syntaxKenneth Reitz2017-05-291-1/+1
|
* new requests namespaceKenneth Reitz2017-05-292-7/+7
|
* new installation locationKenneth Reitz2017-05-291-3/+3
|
* improvementsKenneth Reitz2017-05-271-23/+1
|
* mergeKenneth Reitz2017-05-271-1/+40
|\
| * fix #3902 Add proposed documentation change for post dataGary Wu2017-03-011-1/+40
| |
* | 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
|