Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Requirements

python-gitlab depends on:

* `python-requests <http://docs.python-requests.org/en/latest/>`_
* `python-requests <https://2.python-requests.org/en/latest/>`_

Install with pip
----------------
Expand Down
16 changes: 14 additions & 2 deletions docs/api-usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,19 @@ python-gitlab:
gl = gitlab.gitlab(url, token, api_version=4, session=session)

Reference:
http://docs.python-requests.org/en/master/user/advanced/#proxies
https://2.python-requests.org/en/master/user/advanced/#proxies

SSL certificate verification
----------------------------

python-gitlab relies on the CA certificate bundle in the `certifi` package
that comes with the requests library.

If you need python-gitlab to use your system CA store instead, you can provide
the path to the CA bundle in the `REQUESTS_CA_BUNDLE` environment variable.

Reference:
https://2.python-requests.org/en/master/user/advanced/#ssl-cert-verification

Client side certificate
-----------------------
Expand All @@ -324,7 +336,7 @@ The following sample illustrates how to use a client-side certificate:
gl = gitlab.gitlab(url, token, api_version=4, session=session)

Reference:
http://docs.python-requests.org/en/master/user/advanced/#client-side-certificates
https://2.python-requests.org/en/master/user/advanced/#client-side-certificates

Rate limits
-----------
Expand Down