Metadata-Version: 2.4
Name: pro-timer-ajay-2026
Version: 0.0.1
Summary: A professional function timer and profiler decorator
Author-email: Ajay Jangra <ajay1210j@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Pro-Timer
A professional-grade function profiler using decorators.

### Installation
```bash
pip install .
```

### How to use:
```python
from pro_timer.profiler import time_wrapper

@time_wrapper
def my_function():
    print("Doing work...")
```

---

### Create a `demo.py` (To see it in action)
If you want to see your library work like a "real user" would see it, create a file called `demo.py` in your root folder:

```python
import logging
from pro_timer.profiler import time_wrapper

# Setup logging so we can see the output in the console
logging.basicConfig(level=logging.INFO)

@time_wrapper
def calculate_something():
    sum(range(1000000))
    print("Calculation finished!")

if __name__ == "__main__":
    calculate_something()
