WordPress-style Hooks for Python
Project description
WPHooks: WordPress-style Hooks for Python
WPHooks is a lightweight Python library that brings the powerful Event-Driven Architecture of WordPress—Actions and Filters—to your Python projects. It allows you to create extensible, modular, and plugin-friendly applications with ease.
Table of Contents
Why WPHooks?
WordPress's hook system is a proven pattern for building flexible software. It allows developers to "hook" into specific
points of the application execution to modify data or add custom functionality without altering the core codebase.
wphooks implements this exact behavior in Python.
Perfect for Legacy Projects
Refactoring legacy code ("spaghetti code") is often risky and difficult. wphooks offers a strategic way to modernize
these projects:
- Open/Closed Principle: You can extend the functionality of a legacy function without modifying its internal logic.
- Safe Injection: Instead of rewriting a massive function to add a new feature, you can simply trigger an action or apply a filter at the key point.
- Decoupling: New features implementation stays in separate files/modules, keeping the old codebase clean and untouched.
Example Scenario:
Imagine a 1000-line function process_order() that is critical to your business. You need to add a "Send Slack
Notification" feature. Instead of risking a bug by editing process_order(), you just add
do_action('order_processed', order_id) at the end. Your new Slack logic lives in a completely new file, hooked to
order_processed.
Types of Hooks
There are two main types of hooks available in this library:
Actions
Actions are "do something" events that allow you to execute custom code at specific points in your execution flow. They trigger when specific events occur during your script's execution (e.g., "User registered", "Page loaded"). They do not return a value.
Basic Example
from wphooks import add_action, do_action
# 1. Define your custom function
def send_welcome_email(user_id):
print(f"Sending welcome email to user {user_id}...")
# 2. Hook your function to an action name
add_action('user_registered', send_welcome_email)
# 3. Trigger the action somewhere in your code
# This will execute all functions hooked to 'user_registered'
do_action('user_registered', 123)
# Output: Sending welcome email to user 123...
See more Action examples and detailed usage
Filters
Filters are used to "modify something". They accept a data value, modify it, and return it (e.g., "Format title", " Calculate total price"). They must always return a value.
Basic Example
from wphooks import add_filter, apply_filters
# 1. Define your filter function
# It receives a value (and optional args), and MUST return a value
def make_title_uppercase(title):
return title.upper()
# 2. Hook your function to a filter name
add_filter('the_title', make_title_uppercase)
# 3. Apply the filter to your data
filtered_title = apply_filters('the_title', "hello world")
print(filtered_title)
# Output: HELLO WORLD
See more Filter examples and detailed usage
Installation
You can install wphooks easily using pip:
pip install wphooks
Or install it directly from the source:
git clone https://github.com/manuelcanga/wphooks.git
cd wphooks
pip install .
Then, you can import it in your project:
from wphooks import add_action, do_action
from wphooks import add_filter, apply_filters
Development & Testing
To run the unit tests for this project, you can use the built-in unittest module.
Run the following command from the root of the project:
python3 -m unittest discover tests
This will automatically discover and run all tests located in the tests/ directory.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wphooks-0.2.0.tar.gz.
File metadata
- Download URL: wphooks-0.2.0.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e4b55f745c90b00cf36cc9c8f94794d7ee329a2b63232018405a318ff384979
|
|
| MD5 |
6f193d3c0bb7ddc15b9554ec1e146461
|
|
| BLAKE2b-256 |
6cf73962130c156ba98599567f50e9878250400f6a511f6ff5fad0288cfe3a1a
|
File details
Details for the file wphooks-0.2.0-py3-none-any.whl.
File metadata
- Download URL: wphooks-0.2.0-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab13bd467357f2d4390c9ee7e04ad1b91c0bf5d262c51db71659a926bb3e3d95
|
|
| MD5 |
6e6c9a6573826fc0fb421ce7234be160
|
|
| BLAKE2b-256 |
e0d5453880bc6c07db21144066ec5af0ac2f6692cd95d4f89c0693e1198a7fd2
|