Metadata-Version: 2.1
Name: timequota
Version: 0.0.6
Summary: Manage the time of your script
Home-page: https://aravrs.github.io/timequota
Author: AravRS
License: MIT
Project-URL: Source, https://github.com/AravRS/timequota
Project-URL: Documentation, https://aravrs.github.io/timequota/timequota
Project-URL: Changelog, https://github.com/aravrs/timequota/blob/main/CHANGELOG.md
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

[![logo](https://user-images.githubusercontent.com/43105734/136433076-bcbcf0d3-a772-443b-9842-3547102dfd34.png)](https://aravrs.github.io/timequota/)

# timequota

Manage the time of your python script.

```python
from timequota import TimeQuota

tq = TimeQuota(2, "h")

# ...

tq.update()

for i in range(100):

    # ...

    will_exceed_time = tq.track()
    if will_exceed_time:
        # ...
        break
```


