Convenient approach to monkey patching
Project description
Gorilla is a Python library that provides a convenient approach to monkey patching.
Monkey patching is the process of modifying module and class attributes at runtime with the purpose of replacing or extending third-party code.
Although not a recommended practice, it is sometimes useful to fix or modify the behaviour of a piece of code from a third-party library, or to extend its public interface while making the additions feel like they are built-in into the library.
The Python language makes monkey patching extremely easy but the advantages of Gorilla are multiple, not only in assuring a consistent behaviour on both Python 2 and Python 3 versions, but also in preventing common source of errors, and making the process both intuitive and convenient even when faced with large numbers of patches to create.
Features
intuitive and convenient decorator approach to create patches.
can create patches for all class or module members at once.
compatible with both Python 2 and Python 3.
customizable behaviour.
Usage
Thanks to the dynamic nature of Python that makes monkey patching possible, the process happens at runtime without ever having to directly modify the source code of the third-party library:
>>> import gorilla
>>> import destination
>>> @gorilla.patches(destination.Class)
... class MyClass(object):
... def method(self):
... print("Hello")
... @classmethod
... def class_method(cls):
... print("world!")
The code above creates two patches, one for each member of the class MyClass, but does not apply them yet. In other words, they define the information required to carry on the operation but are not yet inserted into the specified destination class destination.Class.
Such patches created with the decorators can then be automatically retrieved by recursively scanning a package or a module, then applied:
>>> import gorilla
>>> import mypackage
>>> patches = gorilla.find_patches([mypackage])
>>> for patch in patches:
... gorilla.apply(patch)
See the Tutorial section from the documentation for more detailed examples and explanations on how to use Gorilla.
Documentation
Read the documentation online at gorilla.readthedocs.io or check its source in the doc directory.
Out There
Projects using Gorilla include:
Project details
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 gorilla-0.4.0.tar.gz
.
File metadata
- Download URL: gorilla-0.4.0.tar.gz
- Upload date:
- Size: 29.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 005ab8853b037162a7c77bb824604c6e081878ee03c09ad01ef41744856019d3 |
|
MD5 | 6466544f48de14ae93c620a70d94e85b |
|
BLAKE2b-256 | 0f000a7f837b9ea8ad3e0a98aa1d6ac52c13db9bc01ce9ccdca4d3072b8ea272 |
File details
Details for the file gorilla-0.4.0-py2.py3-none-any.whl
.
File metadata
- Download URL: gorilla-0.4.0-py2.py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25a407c783823db06a90f25303a49b2ab553b8527f4c826878ce5d6d2e25cb5c |
|
MD5 | 689850318ce5b1b996acebd87dbb74a4 |
|
BLAKE2b-256 | b32ad0eab79744c9bc32b916226e8cb71e275eb1c4e73ed6d682d99f907e5d10 |