Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | refactor: format everything blackrefactor/black | Max Wittig | 2019-05-16 | 1 | -2/+2 |
| | |||||
* | Raise an exception on https redirects for PUT/POST | Gauvain Pocentek | 2018-08-24 | 1 | -0/+20 |
| | | | | | | | | | | | POST and PUT requests are modified by clients when redirections happen. A common problem with python-gitlab is a misconfiguration of the server URL: the http to https redirection breaks some requests. With this change python-gitlab should detect problematic redirections, and raise a proper exception instead of failing with a cryptic error. Closes #565 | ||||
* | update copyright years | Gauvain Pocentek | 2017-05-24 | 1 | -1/+1 |
| | |||||
* | fix pep8 test | Gauvain Pocentek | 2016-08-11 | 1 | -0/+1 |
| | |||||
* | Add copyright header to utils.py | Gauvain Pocentek | 2016-08-11 | 1 | -0/+17 |
| | |||||
* | Allow to stream the downloads when appropriate | Gauvain Pocentek | 2016-07-17 | 1 | -0/+15 |
Some API calls will download possibly large data, resulting in a high memory usage and out-of-memory errors. For these API calls use the requests streaming capabilities and download chunked data. The caller is responsible of providing a callable to actually store the data. The default callable just prints the data on stdout. |