Skip to main content

callable-pip patches 'pip' to add 'pip.main()'

Project description

callable-pip

callable-pip provides a drop-in replacement for pip.main() and support for monkey-patching pip.main via a known-dangerous method.

pip.main() has never been a publicly supported API for pip, but it has often been used as such. This tiny package is meant to cover the gap and ease people’s transitions to new usage.

Drop-in Replacement for pip.main

This usage is always guaranteed to work on any supported python version with any functioning version of pip.

Instead of pip.main(...), use this method instead:

import callable_pip
callable_pip.main('install', '--upgrade', 'setuptools')

If you are writing a python program, you can just use callable_pip.main() yourself. This is the only guaranteed-safe usage.

Patching pip.main

callable-pip provides a patch which adds pip.main() back to pip, but which is dangerous and known not to work on some versions of pip:

import callable_pip
callable_pip.dangerous_patch()
...
import pip
pip.main('--version')  # actually invokes callable_pip.main()

If you have dependencies which use pip.main, you can call callable_pip.dangerous_patch() yourself and it will usually work.

dangerous_patch is so-named because it is not guaranteed to work on all pip versions and it is dangerous. Avoid it when possible.

Patching Without Control of Source

You may be a consumer of packages which use pip.main() in a context where you cannot modify or do not own any of the source. These techniques may help you.

More details on sitecustomize.py and .pth files can be found in the Python documentation: https://docs.python.org/3/library/site.html

Remember to remove these patches if you uninstall callable_pip, or Python will fail to start.

Applying the Patch With sitecustomize.py

sitecustomize.py can exist anywhere in the PYTHONPATH, including the directory where python is invoked.

Add a sitecustomize.py with the following content, or append it to an existing sitecustomize.py:

import callable_pip
callable_pip.dangerous_patch()

Applying the Patch With a .pth File

The .pth file can have any name you want, but must be installed in the site-packages directory. It may therefore require root or other elevated privileges to add.

Add a file, e.g. callable_pip.pth, with the following content:

import callable_pip; callable_pip.dangerous_patch()

Documentation

All documentation is in this readme doc.

Bug and Issue Reports

Submit all bug reports and issues here: https://github.com/sirosen/callable-pip/issues

Changelog

2.0.0

Update to pyproject.toml with flit-core for package builds.

Defer import of subprocess until it is needed.

1.0.0

Improved docs, releasing as v1.0 Production after some testing and validation. No code changes from v0.1.0

0.1.0

Initial version

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

callable_pip-2.0.0.tar.gz (3.4 kB view details)

Uploaded Source

Built Distribution

callable_pip-2.0.0-py2.py3-none-any.whl (3.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file callable_pip-2.0.0.tar.gz.

File metadata

  • Download URL: callable_pip-2.0.0.tar.gz
  • Upload date:
  • Size: 3.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.1

File hashes

Hashes for callable_pip-2.0.0.tar.gz
Algorithm Hash digest
SHA256 1bc39542cd0910956b89f00d77f070ceb060f225ac3ab3818749bb7db4d60e17
MD5 8c25d3f17f7c7523ce8bcf3fa0cf3534
BLAKE2b-256 cb63b9e12142ead54a999829adfdfc819f5628871542340320c34b19aab44fed

See more details on using hashes here.

Provenance

File details

Details for the file callable_pip-2.0.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for callable_pip-2.0.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 778eb73d239120d9380127db1d9b1bf0faa1fe6d2a254f130c9b9a7db15c10c4
MD5 4e542e525a9564d252d834400c43d4fe
BLAKE2b-256 0b9fb4ec91d8c241a13d2f40742d149af6b16c1c0dcc8faf68c95b59788c090e

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page