Auditing and profiling multi-tool
Project description
Seagrass
A Python event auditing and profiling multitool
Seagrass is a Python library for hooking and auditing events in your Python code.
Note: Seagrass is only supported for Python versions >= 3.8
Examples
Here is a simple example of using Seagrass to audit the number of times we call
two example functions, add
and sub
:
import logging
from seagrass import Auditor
from seagrass.hooks import CounterHook
# Preliminary: configure logging
fh = logging.StreamHandler()
fh.setLevel(logging.INFO)
formatter = logging.Formatter("%(name)s: %(message)s")
fh.setFormatter(formatter)
logger = logging.getLogger("seagrass")
logger.setLevel(logging.INFO)
logger.addHandler(fh)
# Create a new Auditor instance
auditor = Auditor()
# Create a hook that will count each time an event occurs
hook = CounterHook()
# Now define some new events by hooking some example functions
@auditor.decorate("event.add", hooks=[hook])
def add(x: int, y: int) -> int:
return x + y
@auditor.decorate("event.sub", hooks=[hook])
def sub(x: int, y: int) -> int:
return x - y
# Now start auditing!
with auditor.audit():
add(1, 2)
add(3, 4)
sub(5, 2)
# Display the results of auditing. This should produce the following output:
#
# seagrass: Calls to events recorded by CounterHook:
# seagrass: event.add: 2
# seagrass: event.sub: 1
#
auditor.log_results()
From there we can perform more complex tasks. For instance, here's an example
where we override Python's time.sleep
and profile it:
import time
from seagrass import Auditor
from seagrass.hooks import CounterHook, ProfilerHook
# Omitted: logging configuration
auditor = Auditor()
hooks = [CounterHook(), ProfilerHook()]
ausleep = auditor.wrap(time.sleep, "time.sleep", hooks=hooks)
setattr(time, "sleep", ausleep)
with auditor.audit():
for _ in range(20):
time.sleep(0.1)
auditor.log_results()
You can also define custom auditing hooks by creating a new class that
implements the interface defined by seagrass.base.ProtoHook
. In the example
below, we define a custom hook that raises an AssertionError
if the argument
to the function say_hello
has the wrong type.
from seagrass import Auditor
auditor = Auditor()
class MyTypeCheckHook:
prehook_priority: int = 0
posthook_priority: int = 0
def prehook(self, event_name, args, kwargs):
assert isinstance(args[0], str)
def posthook(self, event_name, result, context):
pass
def reset(self):
pass
hook = MyTypeCheckHook()
@auditor.decorate("event.say_hello", hooks=[hook])
def say_hello(name: str):
return f"Hello, {name}!"
# Outside of an auditing context, the hook doesn't get called. The
# following calls to say_hello will both return without error, even
# though the second one uses the wrong argument type.
say_hello("Alice")
say_hello(1)
# Inside of an auditing context, the hooks will get called.
with auditor.audit():
say_hello("Bob")
# This call to say_hello will raise an AssertionError
say_hello(2)
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 seagrass-0.1.1.tar.gz
.
File metadata
- Download URL: seagrass-0.1.1.tar.gz
- Upload date:
- Size: 14.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79c26766eee62617c3b2c4079558d46636480693b2adafc1bb892a1efc8041ba |
|
MD5 | 4afeb029fa6268cf4625063deabaeeb9 |
|
BLAKE2b-256 | 76c852fee9282a9de507dd4e44125c53e3a4c142f89623e54f98e4243d122e02 |
File details
Details for the file seagrass-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: seagrass-0.1.1-py3-none-any.whl
- Upload date:
- Size: 18.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 993ef85b81a312848b1d21876380405fb38dc151b777fdb5e0df4d4146bb9d1f |
|
MD5 | 01bf8f853401a55463975749e9cf0cf4 |
|
BLAKE2b-256 | 5ea96836d490a63608d4b6dc903c22d6db2751e864db171e145d10e8fe5be608 |