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-0.3.0.tar.gz
(6.3 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-0.3.0.tar.gz.
File metadata
- Download URL: ez_audit-0.3.0.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ee8cce9fde7a6414833cd630e3420bd5f77de5fdd74fa668bb36c8167749053
|
|
| MD5 |
06c4e5a566178e8bc979e08ab364df67
|
|
| BLAKE2b-256 |
c14c41b9f741a849766134c8e6437ef6d1948ff6363f7dd8d7a3286ea7194e27
|
File details
Details for the file ez_audit-0.3.0-py3-none-any.whl.
File metadata
- Download URL: ez_audit-0.3.0-py3-none-any.whl
- Upload date:
- Size: 5.7 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 |
3fef2a1f2608891a715e35a158988380297695d2ba5fd3aaf21d82a1391ade2b
|
|
| MD5 |
cc7d2ed675b4d28942f5b5d49cdd5bd9
|
|
| BLAKE2b-256 |
9d45beb681ae2e5e332ec20a26bc603fb06d51421e8920038a0b5fb3adf45e92
|