Transform python codebase to a virtual environment
Project description
pyMigrate
A tool for automatically migrating any python source code to a virtual environment with all dependencies automatically identified and installed. You can also use this tool to generate requirements.txt for your python code base, in general, this tool will help you to bring your old/hobby python codebase to production/distribution.
Note: As of now, the dependencies are identified based on module names, not the package name. Therefore, the dependencies will be properly listed in requirements.txt only if package name == module name otherwise the module name will be listed directly and pip might fail to download such dependencies, this is because the python runtime operates at modules level, while pip works at package level, as of now, it is nearly impossible to reliably obtain the package name given the module name which came installed with it (this is because of the nature of python's package management). I am still looking for a better/possible approach to mitigate this issue. As of now, you many have to manually change the generated requirements.txt for some packages that are not properly identified.
Features:
- A simple CLI tool.
- Creates and installs a virtual environment automatically.
- Identifies the dependencies (external) automatically and populates the
requirements.txt
- Installs dependencies in the virtual environment.
- Multiple configuration parameters.
Requirements:
- pip
- Python 3.x.x
- venv
Note: : You many need to install python3-venv
via apt
on debian systems.
How to install:
The package is available on pip. Run:
pip3 install py-migrate
Or you can clone the repository and install manually:
git clone https://github.com/Narasimha1997/pyMigrate.git
cd pyMigrate && python3 setup.py install
How to run this tool:
Once installed, the tool will be available through command pymigrate
. Say you have a codebase at /path/to/source
and you want to generate the virtualenv with all the dependencies and source code installed at /path/to/target
, then:
pymigrate /path/to/source /path/to/target
command will generate the virtualenv for you. The target must be an absloute path.
Generating requirements.txt alone, without setting up virtualenv:
You can set --requirements
to generate requirements.txt
alone, this will not set-up the virtualenv. Say you have to generate requirements.txt
at /path/to/output
, then:
pymigrate /path/to/source /path/to/target --requirements
Configuration options:
You can change the default behaviour of the generated virtual environment by setting some of the coniguration options provided. You can run the following command to learn more about these parameters:
pymigrate --help
Which outputs:
usage: pymigrate [-h] [--requirements] [--syspkgs] [--symlink] source target
A tool for automatically migrating any python source code to a virtual
environment with all dependencies automatically identified and installed. You
can also use this tool to generate requirements.txt for your python code base,
in general, this tool will help you to bring your old/hobby python codebase to
production/distribution.
positional arguments:
source Path to source directory where you have the codebase to
transform
target Path to the destination where you need to generate a
virtual-environment or requirements.txt
optional arguments:
-h, --help show this help message and exit
--requirements This flag tells the tool to generate requirements.txt
--syspkgs Set this flag, if you want to use system site-packages In
other words, you will re-use the packages available on the
system instead of downloading them locally in the
virtualenv.
--symlink Symlinks the python interpreter available on the system
rather than installing a new one.
Contributing:
Feel free to contribute by raising issues, making PRs or suggesting features.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file py_migrate-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: py_migrate-0.1.1-py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a218efe3e972ccf621bc202835ccff06dafc430e4f4b45076644337d250434bc |
|
MD5 | 5fb29e8456af91dddc48bfd200489417 |
|
BLAKE2b-256 | c94562bd1b858a4c57c05940c2921931d05e70a59109da59d5660f580eecccad |