| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 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. | ||||
| * | Add documentation for available status codes | Zane Bitter | 2017-11-21 | 1 | -11/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | There was no way to determine what actual names were available outside of looking at the source code. They were not listed in the documentation or accessible through the interactive help. In addition, doing `pydoc requests.status_codes` displayed some pretty unhelpful information - the utf-8 encoding string was included in the module name, there was no description, and internal variables used for initialisation leaked into the module scope: DATA code = 511 codes = <lookup 'status_codes'> title = 'network_authentication' titles = ('network_authentication_required', 'network_auth', ... This change prevents the internal variables from leaking, adds a docstring (which has the side-effect of correcting the module name), and appends information on the allowed status code names to the docstring when the module is initialised. The improved module documentation is then used in the API documentation to provide another easy reference to the complete list of status codes. | ||||
| * | correct module for cookiejar_from_dict in docs | Nate Prewitt | 2016-11-02 | 1 | -1/+1 |
| | | |||||
| * | docs updates | Nate Prewitt | 2016-08-14 | 1 | -0/+3 |
| | | |||||
| * | updating documentation to reflect decision of #3386 | Nate Prewitt | 2016-07-07 | 1 | -1/+5 |
| | | |||||
| * | Fix autofunction Reference | Brandon Sandrowicz | 2016-03-08 | 1 | -1/+1 |
| | | | | `request.codes` is a class (`LookupDict`), not a function. | ||||
| * | refactor API documentation | Kenneth Reitz | 2016-02-18 | 1 | -49/+42 |
| | | |||||
| * | Update example for Python 2/3 compatible. | shoma | 2016-01-22 | 1 | -3/+5 |
| | | |||||
| * | Fix api doc of debug logging for Python 3 | shoma | 2016-01-22 | 1 | -3/+4 |
| | | |||||
| * | Docs: Clarify that method-level params are not persisted in sessions. | Lukas Graf | 2015-08-08 | 1 | -0/+2 |
| | | |||||
| * | Clean up cookie docs and display them. | Cory Benfield | 2014-12-24 | 1 | -0/+6 |
| | | |||||
| * | tildes | Kevin Burke | 2014-08-29 | 1 | -1/+1 |
| | | |||||
| * | s/behavior/behaviour | Kevin Burke | 2014-08-29 | 1 | -1/+1 |
| | | |||||
| * | Document Timeout behaviour | Kevin Burke | 2014-08-29 | 1 | -18/+2 |
| | | |||||
| * | Add support for connect timeouts | Kevin Burke | 2014-08-23 | 1 | -1/+1 |
| | | | | | | | | Modifies the timeout interface to also accept a tuple (connect, read) which would be used to set individual connect and read timeouts for Requests. Adds Advanced documentation explaining the interface and providing guidance for timeout values. | ||||
| * | Add authentication classes to the API document | David Pursehouse | 2014-07-18 | 1 | -0/+7 |
| | | | | | Change-Id: Ic1464f246602b809f3c29fbafd6f36b747d5d5df | ||||
| * | Add Timeout exception in API documentation | David Pursehouse | 2014-07-15 | 1 | -0/+1 |
| | | | | | | | | The Timeout exception is referenced from quickstart.rst but does not get hyperlinked. Change-Id: I69ad881bf9d2475c6239ac7b17f68ddbce0d03cd | ||||
| * | Timeout documentation changes. | Cory Benfield | 2014-03-03 | 1 | -1/+3 |
| | | |||||
| * | Added link to @Lukasa's blog - the source material | David Fischer | 2013-09-24 | 1 | -0/+6 |
| | | |||||
| * | Added migrating to 2.x docs | David Fischer | 2013-09-24 | 1 | -0/+64 |
| | | |||||
| * | clearly describe `r.raw` in Body Content Workflow | homm | 2013-09-12 | 1 | -1/+1 |
| | | |||||
| * | remove extra mention of dangerous `r.raw` | homm | 2013-09-12 | 1 | -4/+5 |
| | | |||||
| * | Some cosmetic updates to the docs | Kwpolska | 2013-07-20 | 1 | -1/+1 |
| | | | | | Signed-off-by: Kwpolska <kwpolska@gmail.com> | ||||
| * | Fix API documentation issues | amercader | 2013-04-30 | 1 | -14/+11 |
| | | | | | | | | | * 'Cookies' and 'Encodings' sections were not built because the reference to the functions was wrong. * 'Exceptions' section had a wrong anchor link ('module-requests', same one as the main heading). * Remove 'decode_gzip' function, which is no longer present. | ||||
| * | A tiny typo, noticed while working on the Polish translation. | Chris Warrick | 2013-04-27 | 1 | -1/+1 |
| | | |||||
| * | Updated documentation indicating that logging is done via ↵ | Sorin Sbarnea | 2013-04-10 | 1 | -1/+1 |
| | | | | | | | requests.packages.urllib3 instead of requests. modified: docs/api.rst | ||||
| * | * Documented the logging, requested in #1297 | Sorin Sbarnea | 2013-04-10 | 1 | -3/+17 |
| | | | | | | | | | | * Added build directory and *.egg to .gitignore * Added sphinx as setup requirement in order to be able to build documentation with `pyhton setup.py build_sphinx` modified: .gitignore modified: docs/api.rst modified: setup.py | ||||
| * | Add HTTPAdapter to API docs. | Cory Benfield | 2013-04-09 | 1 | -0/+6 |
| | | |||||
| * | Session isn't advertised as a context manager | David Fischer | 2013-03-02 | 1 | -3/+4 |
| | | |||||
| * | Capitalize s in Session | David Fischer | 2013-03-02 | 1 | -1/+1 |
| | | |||||
| * | Logic on streaming responses was changed in 1.0 | David Fischer | 2013-03-02 | 1 | -3/+3 |
| | | | | | * prefetch=False in 0.x is now stream=True | ||||
| * | Initial docs patch for migrating from pre 1.0 | David Fischer | 2013-03-01 | 1 | -0/+70 |
| | | |||||
| * | developer interface | Kenneth Reitz | 2012-12-23 | 1 | -2/+2 |
| | | |||||
| * | request sessions | Kenneth Reitz | 2012-12-23 | 1 | -11/+2 |
| | | |||||
| * | cleaup api docs | Kenneth Reitz | 2012-12-23 | 1 | -16/+0 |
| | | |||||
| * | docs update | Kenneth Reitz | 2012-12-23 | 1 | -12/+10 |
| | | |||||
| * | request | Kenneth Reitz | 2012-12-23 | 1 | -0/+2 |
| | | |||||
| * | no async anymore | Kenneth Reitz | 2012-12-23 | 1 | -19/+3 |
| | | |||||
| * | Update documentation on Sessions. | Cory Benfield | 2012-11-17 | 1 | -0/+3 |
| | | | | | | This resolves issue #870. Better documentation here should be considered for further work. | ||||
| * | Fixing status codes. Somehow these were wrong. | Peter Manser | 2011-11-14 | 1 | -3/+3 |
| | | |||||
| * | ref | Kenneth Reitz | 2011-11-09 | 1 | -0/+2 |
| | | |||||
| * | better stepping for elastic design | Kenneth Reitz | 2011-11-09 | 1 | -0/+2 |
| | | |||||
| * | better api docs | Kenneth Reitz | 2011-11-09 | 1 | -18/+53 |
| | | |||||
| * | Async API | Kenneth Reitz | 2011-10-13 | 1 | -3/+15 |
| | | |||||
| * | Migrate new docs over. | Kenneth Reitz | 2011-10-13 | 1 | -12/+48 |
| | | |||||
| * | doc cleanups | Kenneth Reitz | 2011-08-17 | 1 | -12/+1 |
| | | |||||
| * | :+1: | Kenneth Reitz | 2011-07-09 | 1 | -1/+1 |
| | | |||||
| * | add PATCH to docs | Kenneth Reitz | 2011-06-21 | 1 | -1/+3 |
| | | |||||
| * | api update | Kenneth Reitz | 2011-05-16 | 1 | -0/+6 |
| | | |||||
| * | Big API update | Kenneth Reitz | 2011-05-16 | 1 | -1/+47 |
| | | |||||
