
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
caipyrinha
Advanced tools
Abstraction layer over argparse.
Caipyrinha added 2 methods to argparse.ArgumentParser, callback and
parse_wc. Also a Caipyrinha instance is callable and is equal to use
parse_wc method.
Example of use:
.. code-block:: python
# ex.py
import caipyrinha
parser = caipyrinha.Caipyrinha(prog="Your Program")
parser.add_argument("--version", action='version', version="%(prog)s 0.1")
@parser.callback(exit=0, exclusive="group1")
def first(flags, returns):
'''Execute this option and exit'''
print "bye bye"
@parser.callback(action="store")
def second(flags, returns):
'''set his own return value with his parameter'''
return flags.second
@parser.callback("--third", exclusive="group1")
def no_used_name(flags, returns):
'''you cant use this argument with first'''
print returns.second
import sys
parser(sys.argv[1:])
Usage
::
$ python ex.py --help
usage: Your Program [-h] [--version] [--first] [--second SECOND] [--third]
optional arguments:
-h, --help show this help message and exit
--version show program's version number and exit
--first Execute this option and exit
--second SECOND set his own return value with his parameter
--third you cant use this argument with first
$ python ex.py --first
bye bye
$ python ex.py --first --second "hello from second"
bye bye
$ python ex.py --first --second "hello from second" --third
usage: Your Program [-h] [--version] [--first] [--second SECOND] [--third]
Your Program: error: argument --third: not allowed with argument --first
$ python ex.py --second "hello from second" --third
hello from second
FAQs
Abstraction layer over argparse.
We found that caipyrinha 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.