
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
PyPIcky is a tiny package that provides a proxy to the PyPI server but with version requirements pre-applied.
To install::
pip install pypicky
Once installed, create a
requirements file <https://pip.readthedocs.io/en/1.1/requirements.html>
_
(using the same syntax that you would normally use for pip) and then start up
PyPIcky by using the pypicky
command and passing it the name of the
requirements file as a command-line argument::
pypicky requirements.txt
This will start up a small web server, and will print out a line such as::
Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
You can then call pip with::
pip install --index-url http://127.0.0.1:5000/ astropy
and this will then install the requested packages and all dependencies, ignoring packages excluded by the requirements file.
This can then be used for example with other tools that support PyPI index URLs,
such as tox <https://tox.readthedocs.io/en/latest/>
_.
If a package is already installed, pip will not try installing it again. This means that if e.g. you try and run pip as described above, but the package you are trying to install (or any of its dependencies) is already installed, no matter how recent the version, it will not be installed again. Therefore, I recommend using pip with the custom index URL inside a clean environment (but you can run the pypicky command inside your regular environment.)
FAQs
Run a PyPI server with version requirements applied
We found that pypicky demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.