Metadata-Version: 2.4
Name: mytqdm
Version: 1.0.9
Summary: mytqdm is a wrapper around tqdm that allows to see and share your progress on https://mytqdm.app
Home-page: https://github.com/padmalcom/mytqdm
Author: Jonas Freiknecht
Author-email: j.freiknecht@googlemail.com
License: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: tqdm>=4.67.1
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# MyTqdm
See and share your tqdm state everywhere with everyone on [mytqdm.app](https://mytqdm.app)!

<a href="https://www.buymeacoffee.com/padmalcom" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" height="41" width="174"></a>

## Installation
```pip install mytqdm```

## Registration
Register an account on [mytqdm.app](https://mytqdm.app) to obtain your custom API key.

## Usage
- Import via ```from mytqdm import mytqdm``` and use ```mytqdm``` instead of ```tqdm```.
- Provide your ```api_key``` in the mytqdm constructor. Optionally provide a ```title```.

Example:
```
from mytqdm import mytqdm

MY_API_KEY = "..."
for i in mytqdm(range(10000), api_key=MY_API_KEY, title="Our progress to make POs happy."):
    ...
```





