Utility functions for monkey-patching python code
Project description
About
python-monkey-business is a package that provides a decorator for monkey-patching python functions at runtime.
Installation
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
Usage
To use python-monkey-business to swap out a function in a class or module at runtime:
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.
License
This code is licensed under the Simplified BSD License. View the LICENSE file under the root directory for complete license and copyright information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file python-monkey-business-1.1.0.tar.gz
.
File metadata
- Download URL: python-monkey-business-1.1.0.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8393839cc741415ed5ddc2bd58e2d4ce07f966a7d26b7aebff19dcec64818edc |
|
MD5 | fa3cd2ddb76caba332c170b65bf662cd |
|
BLAKE2b-256 | 21bca6182bb30701d0df25ad336f2dd74343447032e0995025ba82079a94f745 |
File details
Details for the file python_monkey_business-1.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: python_monkey_business-1.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15b4f603c749ba9a7b4f1acd36af023a6c5ba0f7e591c945f8253f0ef44bf389 |
|
MD5 | 700e88b1544d0478ccfef1cc5ea4d94e |
|
BLAKE2b-256 | 43a2b6a5cbd5822b4d049adfedf496ce0908480e5a41722fda7b7ffaacb086d6 |