Metadata-Version: 2.1
Name: tenji
Version: 0.2
Summary: Asyncronous Python client for scraping data from MyFigureCollection (MFC).
Author-email: Nate Shoffner <nate.shoffner@gmail.com>
Project-URL: Homepage, https://github.com/Tenji-hin/tenji
Project-URL: Bug Tracker, https://github.com/Tenji-hin/tenji/issues
Keywords: myfigurecollection,mfc,parser,scraper
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

# Tenji

Asyncronous Python client for scraping data from MyFigureCollection (MFC).

## Usage

```python
import asyncio
from tenji import MfcClient

async def main():
    client = MfcClient()
    profile = await client.get_profile("syntack")
    print(profile.status)

if __name__ == "__main__":
    asyncio.run(main())
```

### Authenticated Requests

There is some session support but as of right now the goal is to focus on non-authenticated requests.


### Notes

* The client currently relies on an English locale.
