A wrapper for pip download in offline scenario.
Project description
pip-download: A wrapper useful in offline scenario
pip-download is a tool which can be used to download python projects and their dependencies listed on
pypi's download files
page. If you run the pip-download
command to download one project on a Linux platform, packages end with .whl
and can be directly installed on a Windows and a macOS platform will also be downloaded. In that way, you can use these downloaded packages to serve for a minimal pypi sever(like pypiserver ) on your company internal network.
At first, it uses pip download xxx
command to download packages of the project xxx
to a temp dir. Then it unpacks these downloaded packages' name and version to download all packages of the project xxx
. These downloaded packages include packages end with .whl
built on the Linux, Windows, macOS platform and the source packages end with .tar.gz
or .zip
.
Installation
pip-download is distributed on PyPI and is available on Linux/macOS and Windows and supports Python 3.6+. You can simply install pip-download as below:
$ pip install pip-download
However, it's a better choice to use a virtual environment:
$ python -m venv venv
# On Windows:
$ .\venv\Scripts\activate
# On Linux:
$ source venv/bin/activate
$ pip install pip-download
virtualenv is also a good choice.
Usage
After installation, you can use pip-download to download python projects and its dependencies.
$ pip-download flask
$ pip-download -r requirements.txt
$ pip-download hatch -d /tmp/
$ pip-dwonload -py cp37 ujson
$ pip-dwonload -py cp37 -p win_amd64 ujson
Also, you can put your common options in the config file, python_versions
and platform_tags
are supported now:
$ pip-download --show-config
/some-path-to/settings.json
$ vim /some-path-to/settings.json
{
"python-versions": ["cp37"],
"platform-tags": ["win_amd64"]
}
$ vim /some-path-to/settings.json
{
"python-versions": ["cp37", "cp36"],
"platform-tags": ["win_amd64", "manylinux"]
}
For more usage, use pip-download --help
.
Credits
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 pip-download-0.4.2.tar.gz
.
File metadata
- Download URL: pip-download-0.4.2.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ef771a905d2838829b76649f7871a195f8950eb8e6e29d8ffbb426caa7eb325 |
|
MD5 | d718205618f4c54db9eac2a028099905 |
|
BLAKE2b-256 | c9ebebcf4b94a3220617507f9d0118fd679f96ae06f501bee125c576bdbb3de9 |
File details
Details for the file pip_download-0.4.2-py3-none-any.whl
.
File metadata
- Download URL: pip_download-0.4.2-py3-none-any.whl
- Upload date:
- Size: 14.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba820ddfc13e7ba2241056ac00ee4b3f672dc88854ec0f6de720871b33b4146d |
|
MD5 | bda676ae19d2ff69c1f77f046f35e8f9 |
|
BLAKE2b-256 | d58201f5103b9a0586e33fe001d30e5214ab6e90cf09be74aa7433ccf6930f19 |