Metadata-Version: 2.1
Name: tomeks_torrent_manager
Version: 0.0.6
Summary: My torrent manager
Project-URL: Homepage, https://github.com/pypa/sampleproject
Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/issues
Author-email: Tomek <thomas.r.waller@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Requires-Dist: beautifulsoup4==4.10.0
Requires-Dist: datasize==1.0.0
Requires-Dist: feedparser==6.0.10
Requires-Dist: pytimeparse==1.1.8
Requires-Dist: requests==2.28.1
Requires-Dist: tqdm
Requires-Dist: transmission-clutch==6.0.3
Description-Content-Type: text/markdown

# Tomeks torrent manager

:D

Source: https://packaging.python.org/en/latest/tutorials/packaging-projects/


## Build
```
python3 -m build
```

# Testing
## Install from local
```
python -m venv venv
pip install /home/tom/git/home/tracker_predictor/tomeks_torrent_manager/dist/tomeks_torrent_manager-0.0.1.tar.gz
```

## Upload to test
```
python3 -m twine upload --repository testpypi dist/*
```

## Install from test Pypi
```
python3 -m pip install --index-url https://test.pypi.org/simple/ tomeks_torrent_manager
```

# Prod
# Upload to prod
```
python3 -m twine upload dist/*
```





# How to use
```
from tomeks_torrent_manager.pull_torrent_info import download_from_transmission, download_from_website, download_rss_feeds

```