Metadata-Version: 2.1
Name: automate-replit
Version: 0.1.3
Summary: Automate your replit account using this replit api wrapper!
Home-page: https://github.com/thatrandomperson5/automate-replit
Keywords: replit,async,asyncio,aiohttp,api,api-wrapper
Author: thatrandomperson5
Requires-Python: >=3.10.0,<4.0.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: aiohttp (>=3.8.3,<4.0.0)
Requires-Dist: aiolimiter (==1.0.0)
Project-URL: Documentation, http://automate-replit.rtfd.io/
Project-URL: Repository, https://github.com/thatrandomperson5/automate-replit
Description-Content-Type: text/markdown

# Automate Replit
[![Documentation Status](https://readthedocs.org/projects/automate-replit/badge/?version=latest)](https://automate-replit.readthedocs.io/en/latest/?badge=latest)


Automate replit actions with this replit api wrapper!

## Docs
Documentation for this library can be found [here](https://automate-replit.readthedocs.io/en/docs/)

## Source
Source can be found [here](https://github.com/thatrandomperson5/automate-replit)

## Example
```py
from autoreplit import ReplitClient

client = ReplitClient()

async def getEthan():
    ethan = await client.getUserByName("not-ethan")
    print(f"Ethan's id: {ethan.id}")
    print(f"Ethan's follower count: {ethan.followerCount}")
    if ethan.isOnline:
        print("Ethan is online!")
    else:
        print(f"Ethan was last seen {ethan.lastSeen}")
    print(f"Ethan's roles: {ethan.roles}")
    print(f"All of ethan: {ethan}")

client.run(getEthan())
```
**Note**: pass a sid to get better info
