| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Docs: Fix links to `timeouts` section by using :ref: instead of | Lukas Graf | 2015-08-15 | 1 | -2/+2 |
| | | | | | linking to .html files. | ||||
| * | Make docstring of api.get more clear | Matt Havard | 2015-04-30 | 1 | -2/+3 |
| | | |||||
| * | Add return type field to entry-point docstrings | Ulrich Petri | 2015-03-14 | 1 | -8/+23 |
| | | | | Fixes: #2483 | ||||
| * | Close sessions created in the functional API | Ian Cordasco | 2014-11-07 | 1 | -1/+6 |
| | | | | | | | | | This is related to #1882 and #1685. By calling close on the session, we clear the PoolManager operated by the Session and close all sockets. Fixes #1882 Partially-fixes #1685 | ||||
| * | Merge pull request #2258 from willingc/add-json | Kenneth Reitz | 2014-10-05 | 1 | -2/+4 |
| |\ | | | | | Add json parameter | ||||
| | * | Adds json parameter for POST requests | Carol Willing | 2014-08-28 | 1 | -2/+4 |
| | | | |||||
| * | | Document Timeout behaviour | Kevin Burke | 2014-08-29 | 1 | -2/+6 |
| |/ | |||||
| * | The timeout is in seconds. | Cory Benfield | 2014-02-16 | 1 | -1/+1 |
| | | |||||
| * | Revert "[kennethreitz/requests#1208] adding a max_retries argument" | Kenneth Reitz | 2013-03-03 | 1 | -1/+0 |
| | | | | | This reverts commit 796d3225ddf08a9ebaa429209b9d077c3a8f99b8. | ||||
| * | [kennethreitz/requests#1208] adding a max_retries argument | Wilfred Hughes | 2013-02-27 | 1 | -0/+1 |
| | | |||||
| * | Missing line was allowing redirects with HEAD | Ian Cordasco | 2013-02-20 | 1 | -0/+1 |
| | | | | | Closes #1203 | ||||
| * | api docs | Kenneth Reitz | 2012-12-23 | 1 | -0/+6 |
| | | |||||
| * | Tweaked the 'data' param docs to indicate that a file-like object is also ↵ | Hans Lellelid | 2012-12-20 | 1 | -4/+4 |
| | | | | | supported. | ||||
| * | /s/prefetch/stream | Kenneth Reitz | 2012-12-17 | 1 | -1/+1 |
| | | |||||
| * | nice and cleanup | Kenneth Reitz | 2012-12-17 | 1 | -1/+0 |
| | | |||||
| * | further remove config | Kenneth Reitz | 2012-12-17 | 1 | -13/+1 |
| | | |||||
| * | json errors | Kenneth Reitz | 2012-12-16 | 1 | -0/+1 |
| | | |||||
| * | WHOOOOOOOOOOOOOOOO | Kenneth Reitz | 2012-12-15 | 1 | -5/+2 |
| | | |||||
| * | Updates from ISC to Apache2 | Lyndsy Simon | 2012-12-05 | 1 | -1/+1 |
| | | |||||
| * | Merge pull request #983 from jszakmeister/allow-strict | Kenneth Reitz | 2012-12-02 | 1 | -1/+1 |
| |\ | | | | | Add the ability to turn off HTTP 0.9 support. | ||||
| | * | Add the ability to turn off HTTP 0.9 support. | John Szakmeister | 2012-12-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While debugging an issue I discovered requests was coming back with 200 response, when it really shouldn't have. It turns out this happened for two reasons: the jetty server running the app was rather lame and didn't fail the request as a Bad Request, and httplib was happy to let malformed data through and call it success. It turns out httplib's strict flag controls this behavior of whether or not to validate the status line. The underlying urllib3 supports the concept as well. There was a bug there to that is now fixed upstream. The last step is exposing this through requests. This introduces a supports_http0.9 flag to help control this behavior. It defaults to to True to preserve the current behavior. Setting it to False will allow the underlying HTTPConnection to validate the status line. | ||||
| * | | Fixed so that safe_mode works for Sessions | Jonatan Heyman | 2012-11-23 | 1 | -2/+0 |
| |/ | |||||
| * | Whitespace fixes following PEP8. | Locker537 | 2012-08-16 | 1 | -0/+2 |
| | | |||||
| * | address connection leak issue from #520 | Shivaram Lingamneni | 2012-08-05 | 1 | -4/+13 |
| | | | | | | | | | | | | | | * prefetch now defaults to True, ensuring that by default, sockets are returned to the urllib3 connection pool on request end * sessions now have a close() method, notifying urllib3 to close pooled connections * the module-level API, e.g., `requests.get('http://www.google.com')`, explicitly closes its session when finished When prefetch is False, the open socket becomes part of the state of the Response object, and it's the client's responsibility to read the whole body, at which point the socket will be returned to the pool. | ||||
| * | Issue #505: Changed the store_cookie configuration to be part of the config ↵ | Arup Malakar | 2012-05-23 | 1 | -2/+1 |
| | | | | | dict, instead of being a new argument | ||||
| * | authors | Kenneth Reitz | 2012-05-16 | 1 | -0/+1 |
| |\ | |||||
| | * | Issue #505: Allow disabling of cookie persistence/sending | Arup Malakar | 2012-05-16 | 1 | -0/+1 |
| | | | |||||
| * | | New implementation of safe_mode. Now, we throw exceptions in models.py ↵ | Josh Imhoff | 2012-05-09 | 1 | -0/+2 |
| |/ | | | | regardless of safe_mode. We catch those exceptions at the API level and return a blank Response. See safe_mode.py for details. | ||||
| * | Sphinx throws an error if you don't escape ** in **kwargs | Ian Danforth | 2012-03-18 | 1 | -7/+7 |
| | | |||||
| * | Updated Requests api to accept a 'cert' argument. | chadnickbok@gmail.com | 2012-03-14 | 1 | -2/+1 |
| | | | | | | | | | This argument can be either a string, containing the path to a pem-formatted key and certificate chain, or a tuple of (cert, key). When supplied a tuple, the values are paths to an SSL certificate chain file and key, respectively. | ||||
| * | Exposed key_file and cert_file in requests, to support https client ↵ | chadnickbok@gmail.com | 2012-03-14 | 1 | -0/+2 |
| | | | | | certificates. | ||||
| * | history for HEAD 3xxv0.10.3 | Kenneth Reitz | 2012-02-20 | 1 | -1/+1 |
| | | |||||
| * | Added prefetch documentation for api | Frank Kumro | 2012-01-12 | 1 | -0/+1 |
| | | |||||
| * | The `request` method of `Session` class does not take a `session` argument. ↵ | Shrikant Sharat Kandula | 2012-01-09 | 1 | -1/+1 |
| | | | | | But `api.request` does. So, it has to be popped before you can send the whole `kwargs` dict to `Session.request` method. | ||||
| * | :sparkles: 2012 :sparkles: | Kenneth Reitz | 2012-01-01 | 1 | -1/+1 |
| | | |||||
| * | ssl docs | Kenneth Reitz | 2011-12-28 | 1 | -0/+1 |
| | | |||||
| * | api cleanup | Kenneth Reitz | 2011-12-28 | 1 | -1/+1 |
| | | |||||
| * | simplify api.request | Kenneth Reitz | 2011-12-28 | 1 | -32/+2 |
| | | |||||
| * | whitespace | Kenneth Reitz | 2011-12-14 | 1 | -1/+0 |
| | | |||||
| * | Fix spelling errors, typos. | Nick Hatch | 2011-12-11 | 1 | -1/+1 |
| | | |||||
| * | Rename use_session to session. | Shrikant Sharat | 2011-11-25 | 1 | -4/+4 |
| | | |||||
| * | Add use_session argument to request method. | Shrikant Sharat | 2011-11-25 | 1 | -1/+3 |
| | | | | | | This allows usage of an existing session to make a request with the request and the get, post etc. function. | ||||
| * | updated docs for last change in `files` argument to support explicit filename. | Rolando Espinoza La fuente | 2011-11-18 | 1 | -1/+1 |
| | | |||||
| * | explicit | Kenneth Reitz | 2011-11-12 | 1 | -3/+15 |
| | | |||||
| * | remove bunk __all__s | Kenneth Reitz | 2011-11-12 | 1 | -2/+0 |
| | | |||||
| * | consistiency | Kenneth Reitz | 2011-11-12 | 1 | -3/+3 |
| | | |||||
| * | better defaults | Kenneth Reitz | 2011-11-12 | 1 | -3/+3 |
| | | |||||
| * | Merge branch 'develop' of https://github.com/jbrendel/requests into develop | Kenneth Reitz | 2011-11-09 | 1 | -1/+12 |
| |\ | | | | | | | | | | | Conflicts: AUTHORS requests/__init__.py | ||||
| | * | Added support for OPTIONS method. | jbrendel | 2011-11-08 | 1 | -1/+12 |
| | | | |||||
| * | | prefetching on all methods | Kenneth Reitz | 2011-11-09 | 1 | -1/+2 |
| |/ | |||||
