Run Python using packages from local directory __pypackages__
Project description
pythonloc: Drop-in Python replacement that imports packages from local directory
pythonloc is a drop in replacement for python that automatically recognizes a __pypackages__
directory and prefers importing packages installed in this location over user or global site-packages. If you are familiar with node, it is similar to node_modules
.
It helps to manage and deploy isolated, reproducible environments. Isolating package installations avoids version conflicts.
This will avoid the steps to create, activate or deactivate "virtual environments", including tools relying on virtual environments such as pipenv or poetry. Python will use the __pypackages__
from the base directory of the script when present.
This is an alternate pure Python implementation of PEP 582. The goal of pythonloc is to make an accessible tool while discussion takes place around adding this functionality to CPython itself. If you prefer, you can build your own CPython with these changes instead of using pythonloc
.
Installation: What's in the box?
System Requirements
- Python 2.7+ installed
- pip installed
After installing with
python3 -m pip install --user pythonloc
you will have two CLI tools available to you: pythonloc and piploc
pythonloc
Short for "python local", it is a drop-in replacement for python with one important difference: the local directory __pypackages__/<version>/lib
is added to the front of sys.path
. <version>
is the Python version, something like 3.7
.
piploc
Short for "pip local", it invokes pip with the same sys.path
as pythonloc
. If installing a package, the target installation directory is modified to be __pypackages__
instead of the global site-packages
.
If __pypackages__
directory does not exist it will be created.
Examples
Script
myapp.py
:
import requests
print(requests)
> piploc install requests
Installing collected packages: urllib3, certifi, chardet, idna, requests
Successfully installed certifi-2018.11.29 chardet-3.0.4 idna-2.8 requests-2.21.0 urllib3-1.24.1
> pythonloc myapp.py # works!
<module 'requests' from '/tmp/demo/__pypackages__/3.6/lib/requests/__init__.py'>
CLI
You can run any python command with pythonloc and it will just run python under the hood:
> pythonloc --help
> pythonloc --version
Another example showing how imports work:
> ls
> pythonloc -c "import requests; print(requests)"
Traceback (most recent call last):
File "<string>", line 1, in <module>
ModuleNotFoundError: No module named 'requests'
> piploc install requests # installs to __pypackages__
Installing collected packages: urllib3, certifi, chardet, idna, requests
Successfully installed certifi-2018.11.29 chardet-3.0.4 idna-2.8 requests-2.21.0 urllib3-1.24.1
> pythonloc -c "import requests; print(requests)" # requests is now found
<module 'requests' from '/tmp/demo/__pypackages__/3.6/lib/requests/__init__.py'>
> piploc uninstall requests # uninstalls from __pypackages__
Successfully uninstalled requests-2.21.0
FAQ
How is this different from a virtual environment?
- A virtual environment may or may not include system packages, whereas
pythonloc
will first look for packages in.
, then__pypackages__
, then in other locations such as user or site-packages. pythonloc
does not require activation or deactivationpythonloc
only looks for a local directory called__pypackages__
. On the other hand, virtual environment activation modifies yourPATH
so you can access virtual environment packages no matter which directory you're in.
How does it work?
It's quite simple and clocks in at less than lines of 100 code. It uses features already built into Python and pip.
All it does is provide a slight level of indirection when invoking Python and pip. It modifies the PYTHONPATH
environment variable when running Python to include __pypackages__
.
PYTHONPATH is a ':'-separated list of directories prefixed to the default module search path. The result is sys.path.
pythonloc is an alias for PYTHONPATH=__pypackages__:$PYTHONPATH python PYTHONARGS
To install packages to the __pypackages__
directory, it uses pip and runs
PYTHONPATH=.:__pypackages__/<version>/lib:$PYTHONPATH python -m pip PIPARGS
where PIPARGS
are whatever arguments you pass it, such as piploc install requests
.
It will insert the arguments --target __pypackages__
if you are installing a package.
What actually gets put in __pypackages__
?
The installed packages go there. This includes their source code, for example the requests
directory below. metadata about the package is stored in the *.dist-info
directories.
If you want to modify or debug the source of an installed package, it's very easy to do so. Just open the appropriate file in __pypackages__
and edit away!
> piploc install requests
Installing collected packages: urllib3, certifi, chardet, idna, requests
Successfully installed certifi-2018.11.29 chardet-3.0.4 idna-2.8 requests-2.21.0 urllib3-1.24.1
> ls # note __pypackages__ was created
__pypackages__
> ls __pypackages__/3.6/lib
bin idna-2.8.dist-info
certifi requests
certifi-2018.11.29.dist-info requests-2.21.0.dist-info
chardet urllib3
chardet-3.0.4.dist-info urllib3-1.24.1.dist-info
idna
How do I uninstall packages from __pypackages__
?
piploc
will automatically add __pypackages__
to $PYTHONPATH
, so
piploc uninstall PACKAGE
will work.
If you get the error
Not uninstalling PACKAGE at ..., outside environment ...
then run deactivate
to make sure you are not using a virtual environment, then try again.
requirements.txt?
You can use a requirements.txt file like so
piploc install -r requirements.txt
poetry.lock?
pip cannot read poetry.lock files, so you'll have to generate a requirements.txt file.
poetry run pip freeze > requirements.txt
There may be an export
command coming to poetry
but it hasn't landed yet. See https://github.com/sdispater/poetry/pull/675.
Pipfile/Pipfile.lock?
pip cannot read Pipfile
s yet, only pipenv can. So you will need to generate requirements.txt using pipenv.
pipenv lock --requirements
pipenv lock --requirements --dev
Can I make python
do this instead of calling pythonloc
?
An easy way to get this behavior is to create a symlink in your local directory
ln -s `which pythonloc` python
ln -s `which piploc` pip
Then run them with
./python
./pip
Otherwise you'll have to build CPython yourself with the reference implementation on GitHub.
Why not use the reference implementation of PEP 582?
There is more overhead involved in building and distributing a custom CPython build than installing a pip package.
You are encouraged to check it out if you are interested though, it's pretty cool!
If it gets accepted and added to CPython then pythonloc
may not be needed anymore.
- PEP 582
- reference CPython implementation on GitHub
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pythonloc-0.0.0.2.tar.gz
.
File metadata
- Download URL: pythonloc-0.0.0.2.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.2 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01b9804acd2e62660dc678e73e9585e5dfdda86cb2e4c40731d80780e4bccd64 |
|
MD5 | 779a8b0e198d4965876409d30b8ff501 |
|
BLAKE2b-256 | 41d08873dd05c6bbd6a9fdd5dcc99fd3f58fe024b1b9e69aca5a41ee71bd892b |
File details
Details for the file pythonloc-0.0.0.2-py3-none-any.whl
.
File metadata
- Download URL: pythonloc-0.0.0.2-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.2 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e867a6a8a4b1b61af7f04759612e3c6f70c0abc6d6ffb1ca3fabb2d201adfab3 |
|
MD5 | ea576cda4166028855d75e5f49c61204 |
|
BLAKE2b-256 | 6ced1d481389c6999e2de9c9f7f8fd5a9211f275d9048bcd28fc79301b618477 |