Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
This library provides access to the CRAB and CAPAKEY webservices operated by the AGIV. Because connecting to these SOAP services from python can be somewhat complicated, this library makes it easier.
pip install hatch
hatch build
hatch build -t wheel
hatch build -t sdist
full docs: https://pip-tools.readthedocs.io/en/latest/
To start, first install pip-tools:
pip install pip-tools
You can also use uv
and for the remainder of the readme replace pip
, pip-compile
or
pip-sync
by uv pip
, uv pip compile
and uv pip sync
.
uv
is a very fast replacement for pip-toools. It's optional, but can save a lot of time.
pip install uv
Note, pip-sync
also uninstalls everything from the virtualenv which does not belong
there according to the requirements file. This includes the project itself. You will
have to install crabpy
again after pip-sync
.
Since the requirements file of pip-sync is still a normal requirements file you can also
use pip install -r
to install all libraries defined in it. This will not cleanup your
virtualenv and uninstall other libraries.
The compiled requirements files are made in a 3.11 environment.
pip-sync requirements-dev.txt
pip install -e .
requirements-dev.txt
contains all libraries uncluding those for testing and development.
requirements.txt
contains only the necessary libraries for running the library.
echo -e "\nStarting"
PIP_COMPILE_ARGS="-q --strip-extras --no-header --resolver=backtracking --no-emit-options pyproject.toml"
pip-compile $PIP_COMPILE_ARGS -o requirements.txt;
echo "requirements.txt done"
pip-compile $PIP_COMPILE_ARGS --extra dev -o requirements-dev.txt;
echo "requirements-dev.txt done"
echo "Finished"
FAQs
Interact with geographical webservices by Informatie Vlaanderen.
We found that crabpy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.