Metadata-Version: 2.1
Name: subsplease.py
Version: 1.2.0
Summary: A simple and asynchronous wrapper for SubsPlease
Home-page: https://github.com/Normouse/subsplease.py
Author: Normouse
Author-email: m.normouse@outlook.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# subsplease.py 
A simple and asynchronous wrapper for SubsPlease.

# Installation
```
pip install subsplease.py
```

# Implementation
```python
from subsplease import SubsPlease

client = SubsPlease()

async def save_new_releases():
    releases = await client.get_latest_magnet()
    with open("magnet.txt", "w") as file:
        file.writelines(f"{release.title}: {release.link}\n" for release in releases)
```

