
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.
python-monkey-business
Advanced tools
python-monkey-business is a package that provides a decorator for monkey-patching python functions at runtime.
Using pip::
pip install python-monkey-business
Or, to install from source::
pip install -e git+https://github.com/theatlantic/python-monkey-business.git#egg=python-monkey-business
If the source is already checked out, use setuptools::
python setup.py develop
To use python-monkey-business to swap out a function in a class or module at runtime:
.. code-block:: python
import monkeybiz
from foomodule import FooClass
import barmodule
# This replaces FooClass.bar with our method
@monkeybiz.patch(FooClass)
def bar(original_fn, *args, **kwargs):
print "Patched!"
return original_fn(*args, **kwargs)
# This replaces barmodule.baz with our function
@monkeybiz.patch(barmodule)
def baz(original_fn, *args, **kwargs):
#...
The first argument to monkeybiz.patch
can be either a module, a class,
or a list of modules and/or classes. The decorator also takes optional
name
and avoid_doublewrap
keyword arguments. If name
is omitted,
the name of the function being patched will be the name of the function being
decorated. If avoid_doublewrap
is True (the default), then functions and
methods can only be patched once using this function.
Use monkeybiz.unpatch()
to revert a monkey-patched function to its original.
This code is licensed under the Simplified BSD License <http://opensource.org/licenses/BSD-2-Clause>
_. View the
LICENSE
file under the root directory for complete license and
copyright information.
FAQs
Utility functions for monkey-patching python code
We found that python-monkey-business demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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
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.