Metadata-Version: 2.1
Name: saturnscrape
Version: 0.1.8
Summary: Scrapes information from https://saturn.live, a collaborate school scheduling system.
Home-page: https://github.com/regulad/saturnscrape
License: GPLv3
Author: Parker Wahle
Author-email: parkeredwardwahle2017@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: PyJWT[crypto] (>=2.3.0,<3.0.0)
Requires-Dist: aiohttp (>=3.8.1,<4.0.0)
Project-URL: Repository, https://github.com/regulad/saturnscrape
Description-Content-Type: text/markdown

# saturnscrape

Scrapes information from https://saturn.live, a collaborate school scheduling system.

Currently, this Python package only aims to support the scheduling and members of a school.

## Example

```python
from asyncio import run
from typing import cast

from saturnscrape import *


async def runner():
    client = SaturnLiveClient("jwt", "refresh token")
    print(cast(FullStudent, await client.get_student("me")).phone_number)
    await client.close()
    

run(runner())
```

