pip-download icon indicating copy to clipboard operation
pip-download copied to clipboard

A wrapper for pip download in offline scenario.

Results 15 pip-download issues
Sort by recently updated
recently updated
newest added

I am getting this error on my windows shell after successful installation of pip-download pip-downlaod : The term 'pip-download' is not recognized as the name of a cmdlet, function, script...

Running `pip-download -p manylinux_x86_64 gnureadline` on windows fails due to the following: `gnureadline` `setup.py` contains the check: ```python if sys.platform == 'win32': sys.exit('Error: this module is not meant to work...

This PR is designed to supersede PR #23 with several fixes: - Fix `find_links` to not drop URL parseable links and only process list once. - Add unit test for...

If we have a `requirements.txt` with these two lines: ``` django-debug-toolbar==3.2 django==3.1.6 ``` django-debug-toolbar has a dependency of "Django>=2.2", which means django==3.1.6 should be enough to satisfy it. However, when...

This change adds a `find_links` option which can be multiply specified which aims to roughly mimic what that argument does for `pip`. It can handle HTTP(S) find links URIs as...

I'd suggest adding an option to include source releases (*.zip, *.tar.gz) when no *.whl releases are existing even when the `--no-source` parameter has been set. I'm working on a PR...

When i'm using pip download the following way ```python pip-download --python-version py3 --python-version cp37 --platform-tag manylinux1_x86_64 --dest . --no-source beautifulsoup4==4.8.2 ``` i will get the following downloads ```bash beautifulsoup4-4.8.2-py2-none-any.whl beautifulsoup4-4.8.2-py3-none-any.whl...

This is useful for mirroring repositories when hosting a private pip mirror (e.g. using Artifactory).

Added tests for fix #13. Works for py2.py3, py2, py3 as well. Fixed test with ujson without version to include --no-source so it won't fall... Also small fix for PEP8...