An async API wrapper for SocialGal written in Python.
from asyncio import run # anyio/trio also work
from socialgal import Client
async def main() -> None:
async with Client(
token="your_token",
session="your_session_token",
) as client:
print(await client.get_posts())
run(main())This project is licensed under the MIT License - see the LICENSE file for details.