Metadata-Version: 2.1
Name: ro-py
Version: 0.1.2
Summary: ro.py is a Python wrapper for the Roblox web API.
Home-page: https://github.com/jmk-developer/ro.py
Author: jmkdev
Author-email: jmk@jmksite.dev
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: iso8601

# Welcome to ro.py
ro.py is a Python wrapper for the Roblox web API.
## Installation
You can install ro.py from pip:  
```
pip3 install ro-py
```
## Examples
Using the client:
```python
from ro_py.client import Client
client = Client("Token goes here")  # Token is optional, but allows for authentication!
```
Viewing a user's info:
```python
from ro_py.client import Client
client = Client()
user_id = 576059883
user = client.get_user(user_id)
print(f"Username: {user.name}")
print(f"Status: {user.get_status() or 'None.'}")
```
Find more examples in the examples folder.

## Other Libraries
https://github.com/RbxAPI/Pyblox  
https://github.com/iranathan/robloxapi  

