Zero-config performance monitoring for Python
Project description
🚀 EZ-Audit
📦 Installation
pip install ez-audit
🚀 Quick Start
from ezaudit import monitor
@monitor
def process_data():
return "Done!"
🧩 Auditing Specific Blocks
If you don't want to monitor a whole function, use audit_block to measure a specific section of code:
from ezaudit import audit_block
with audit_block("Heavy Task"):
# This specific block will be measured
data = [x for x in range(1000000)]
## 📊 Performance Reporting
Analyze your logs instantly to find your slowest functions:
```python
import ezaudit
ezaudit.generate_report()
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
ez_audit-1.0.0.tar.gz
(5.9 kB
view details)
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 ez_audit-1.0.0.tar.gz.
File metadata
- Download URL: ez_audit-1.0.0.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7fe59e7a2d9dd0e3e908ff616a7fd42dcadc8f666e49b4d4b1d008a8b418f65e
|
|
| MD5 |
5404301847cd6b35d8dfc4e6bc0f9cc4
|
|
| BLAKE2b-256 |
d0bb2cc356a73193ef29b6e64bf7588a8defe8d356564211ded9f527e8e0ca6c
|
File details
Details for the file ez_audit-1.0.0-py3-none-any.whl.
File metadata
- Download URL: ez_audit-1.0.0-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43947d233a900f1c943b27e2fca25abbeb5ff54420afcc663e5c9e21119155cb
|
|
| MD5 |
0f98d74f8671f8fbc6db5288a418f466
|
|
| BLAKE2b-256 |
3335da892359807d9288b275252a84d6a50126b282e63a2f13eed86014c4fd31
|