| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update authentication.rst | Kenneth Reitz | 2017-09-04 | 1 | -0/+2 |
| | | |||||
| * | Update quickstart.rst | Kenneth Reitz | 2017-09-04 | 1 | -0/+2 |
| | | |||||
| * | Update advanced.rst | Kenneth Reitz | 2017-09-04 | 1 | -0/+2 |
| | | |||||
| * | Update install.rst | Kenneth Reitz | 2017-09-04 | 1 | -0/+3 |
| | | |||||
| * | Update intro.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. | ||||
| * | Update install.rst | Kenneth Reitz | 2017-08-27 | 1 | -4/+4 |
| | | |||||
| * | 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. | ||||
| * | improve installation docs | Kenneth Reitz | 2017-05-29 | 1 | -2/+2 |
| | | |||||
| * | improve install docs | Kenneth Reitz | 2017-05-29 | 1 | -2/+2 |
| | | |||||
| * | improve installation instructions | Kenneth Reitz | 2017-05-29 | 1 | -1/+2 |
| | | |||||
| * | improve install documentation syntax | Kenneth Reitz | 2017-05-29 | 1 | -1/+1 |
| | | |||||
| * | new requests namespace | Kenneth Reitz | 2017-05-29 | 2 | -7/+7 |
| | | |||||
| * | new installation location | Kenneth Reitz | 2017-05-29 | 1 | -3/+3 |
| | | |||||
| * | improvements | Kenneth Reitz | 2017-05-27 | 1 | -23/+1 |
| | | |||||
| * | merge | Kenneth Reitz | 2017-05-27 | 1 | -1/+40 |
| |\ | |||||
| | * | fix #3902 Add proposed documentation change for post data | Gary Wu | 2017-03-01 | 1 | -1/+40 |
| | | | |||||
| * | | 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 | ||||
| * | Say that we use a dictionary of strings. | Cory Benfield | 2017-02-08 | 1 | -2/+2 |
| | | |||||
| * | Explicitly mention OpenID Connect | Nick Coghlan | 2017-01-10 | 1 | -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 support | Nick Coghlan | 2017-01-10 | 1 | -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 urls | Nate Prewitt | 2017-01-04 | 1 | -3/+3 |
| | | |||||
| * | streaming doc clarification | Nate Prewitt | 2016-11-21 | 1 | -2/+3 |
| | | |||||
| * | correct backtick formatting | Aidan Feldman | 2016-11-17 | 1 | -1/+1 |
| | | |||||
| * | clarify that the `chunk_size` is optional when streaming to a file | Aidan Feldman | 2016-11-17 | 1 | -1/+1 |
| | | |||||
| * | Fixed readme typo - 'site' should be 'domain' | Greg McLeod | 2016-11-15 | 1 | -2/+2 |
| | | |||||
| * | Amplifies the timeout warning in the docs. | Mike Lissner | 2016-11-14 | 1 | -1/+3 |
| | | | | Partially addresses #3070. | ||||
| * | 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 |
| | | |||||
| * | Formatted the example to fix the color highlighting | Bård Aase | 2016-10-31 | 1 | -1/+1 |
| | | |||||
| * | 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 | 2 | -2/+2 |
| | | |||||
| * | Adding notes about Request's timeout behavior. | Maik Himstedt | 2016-08-17 | 2 | -2/+4 |
| | | |||||
| * | docs updates | Nate Prewitt | 2016-08-14 | 2 | -41/+39 |
| | | |||||
| * | fix grammer mistakes in Quickstart | Jiayuan Zhang | 2016-08-13 | 1 | -3/+3 |
| | | |||||
| * | Add a bit about RequestsCookieJar to Cookies section | Michael | 2016-08-03 | 1 | -0/+13 |
| | | |||||
| * | in python3.x not have StringIO | Zeusw | 2016-07-14 | 1 | -1/+1 |
| | | | | I think, should such an amendment. | ||||
| * | updating documentation to reflect decision of #3386 | Nate Prewitt | 2016-07-07 | 1 | -0/+1 |
| | | |||||
| * | Merge pull request #3297 from davidfischer/http-error-specifics | Kenneth Reitz | 2016-06-08 | 1 | -2/+3 |
| |\ | | | | | Note how HTTPErrors are raised | ||||
| | * | Note how HTTPErrors are raised | David Fischer | 2016-06-08 | 1 | -2/+3 |
| | | | |||||
