PATH: //usr/lib/python3.9/site-packages/requests
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📁 __pycache__/
X
📄 __version__.py
↓
X
📄 _internal_utils.py
↓
X
📄 adapters.py
↓
X
📄 api.py
↓
X
📄 auth.py
↓
X
📄 certs.py
↓
X
📄 compat.py
↓
X
📄 cookies.py
↓
X
📄 exceptions.py
↓
X
📄 help.py
↓
X
📄 hooks.py
↓
X
📄 models.py
↓
X
📄 packages.py
↓
X
📄 sessions.py
↓
X
📄 status_codes.py
↓
X
📄 structures.py
↓
X
📄 utils.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: certs.py
# -*- coding: utf-8 -*- """ requests.certs ~~~~~~~~~~~~~~ This module returns the preferred default CA certificate bundle. There is only one — the one from the certifi package. If you are packaging Requests, e.g., for a Linux distribution or a managed environment, you can change the definition of where() to return a separately packaged CA bundle. This Fedora-patched package returns "/etc/pki/tls/certs/ca-bundle.crt" provided by the ca-certificates RPM package. """ def where(): """Return the absolute path to the system CA bundle.""" return '/etc/pki/tls/certs/ca-bundle.crt' if __name__ == '__main__': print(where())
SIMPAN PERUBAHAN