Intelligent Memory Leak Detective for Python
Project description
MemWatcher
Intelligent Memory Leak Detective for Python
MemWatcher is a lightweight, easy-to-use Python library for detecting memory leaks in your applications. It monitors memory usage in real-time, analyzes patterns, and alerts you to potential leaks before they become critical issues.
Table of Contents
- Features
- Quick Start
- Example Report
- Use Cases
- Advanced Configuration
- Documentation
- Running Tests
- Contributing
- License
- Credits
Features
- Lightweight & Fast - Minimal overhead, runs in background thread
- Smart Detection - Statistical algorithms detect real leaks, not just growth
- Beautiful Reports - Human-readable reports with actionable insights
- Simple API - Decorators, context managers, or manual control
- Framework Ready - Works with Django, FastAPI, Flask, and more
- Real-time Monitoring - Continuous monitoring with customizable intervals
- Configurable - Thresholds, sensitivity, callbacks - all customizable
Quick Start
Installation
pip install memwatcher
Basic Usage
from memwatcher import MemoryWatcher
# Start monitoring
watcher = MemoryWatcher(interval=5.0)
watcher.start()
# Your application code here
# ...
# Stop and get report
watcher.stop()
report = watcher.get_report()
print(report)
Using Decorators
from memwatcher import watch_memory, detect_leaks
@watch_memory(interval=1.0)
def process_large_dataset():
# Your code here
pass
@detect_leaks(sensitivity=0.1)
def long_running_task():
# Your code here
pass
Context Manager
from memwatcher import MemoryWatcher
with MemoryWatcher(interval=2.0) as watcher:
# Your code here
pass
# Report automatically generated
report = watcher.get_report()
Example Report
============================================================
MEMORY WATCHER REPORT
============================================================
Duration: 45.2s
Snapshots: 9
Memory Usage:
Start: 145.23 MB
End: 289.67 MB
Change: +144.44 MB
Peak: 289.67 MB
Min: 145.23 MB
Leak Detection:
Status: ⚠️ LEAK DETECTED
Severity: MEDIUM
Confidence: 87.3%
Growth Rate: 3.197 MB/min
Total Increase: 144.44 MB
Recommendation: Warning: Potential memory leak detected. Monitor closely.
============================================================
Use Cases
- Development: Catch leaks during development before they hit production
- Testing: Add memory checks to your test suite
- Production: Lightweight monitoring in production environments
- CI/CD: Automated leak detection in your pipeline
- Profiling: Quick memory profiling for specific functions
Advanced Configuration
from memwatcher import MemoryWatcher
watcher = MemoryWatcher(
interval=5.0, # Snapshot every 5 seconds
threshold_mb=500.0, # Alert if exceeds 500MB
enable_tracemalloc=True, # Detailed tracking (higher overhead)
callback=my_alert_function,# Custom callback on leak detection
max_snapshots=100 # Keep last 100 snapshots
)
Documentation
Full documentation coming soon!
For now, check out the examples/ directory for more usage patterns.
Running Tests
# Install dev dependencies
pip install -e ".[dev]"
# Run tests
pytest
# Run with coverage
pytest --cov=memwatcher --cov-report=html
Contributing
We welcome contributions from the community! Whether you're fixing bugs, adding features, or improving documentation, your help is appreciated.
How to Contribute
-
Fork the Repository
- Click the "Fork" button at the top right of this repository
-
Clone Your Fork
git clone https://github.com/your-username/memwatcher.git cd memwatcher
-
Create a Branch
git checkout -b feature/your-feature-name
-
Set Up Development Environment
# Install in development mode with all dependencies pip install -e ".[dev]"
-
Make Your Changes
- Write clean, readable code
- Follow PEP 8 style guidelines
- Add tests for new features
- Update documentation as needed
-
Run Tests
# Run all tests pytest # Run with coverage pytest --cov=memwatcher --cov-report=html
-
Commit Your Changes
git add . git commit -m "feat: add your feature description"
Follow Conventional Commits format:
feat:for new featuresfix:for bug fixesdocs:for documentation changestest:for test additions/changesrefactor:for code refactoring
-
Push to Your Fork
git push origin feature/your-feature-name
-
Submit a Pull Request
- Go to the original repository
- Click "New Pull Request"
- Provide a clear description of your changes
Reporting Issues
Found a bug or have a feature request? Please open an issue with:
- Clear description of the problem or suggestion
- Steps to reproduce (for bugs)
- Expected vs actual behavior
- Your environment (Python version, OS, etc.)
Code of Conduct
Please be respectful and constructive in all interactions. We're here to build something great together!
License
This project is licensed under the MIT License - see the LICENSE file for details.
Credits
Built with ❤️ by Yeakin Iqra
Star us on GitHub if MemWatcher helps you catch those sneaky memory leaks!
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 memwatcher-0.1.1.tar.gz.
File metadata
- Download URL: memwatcher-0.1.1.tar.gz
- Upload date:
- Size: 19.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd10e16b1f35d76ced46a1604fe8f48d1f634945440071c813a153a397b0a7a9
|
|
| MD5 |
9336b98a38c3cfdfbd63673cfb5aa1f1
|
|
| BLAKE2b-256 |
5b1765929dd7a21527190b80103d58050ea836b71d43d91da3731fb1adaec1ba
|
File details
Details for the file memwatcher-0.1.1-py3-none-any.whl.
File metadata
- Download URL: memwatcher-0.1.1-py3-none-any.whl
- Upload date:
- Size: 12.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8dcc8974b4d4167a5cd76792ec0d23ec80941ad85ad6835f4990f37893afabe
|
|
| MD5 |
1fa6d667629b36ff311182e08e222aac
|
|
| BLAKE2b-256 |
b3af73ff4df736dec1c7424b9859489358f22fb39b0d1f333c4eaed26b5e857a
|