Metadata-Version: 2.1
Name: roblox
Version: 2.0.0
Summary: ro.py is a modern object-oriented asynchronous Python wrapper for the Roblox web API.
Home-page: https://github.com/ro-py/ro.py
Author: jmkdev
Author-email: jmk@jmksite.dev
License: UNKNOWN
Project-URL: Discord, https://discord.gg/tjRfCbDMSk
Project-URL: Issue Tracker, https://github.com/ro-py/ro.py/issues
Project-URL: GitHub, https://github.com/ro-py/ro.py/
Project-URL: Examples, https://github.com/ro-py/ro.py/tree/main/examples
Project-URL: Twitter, https://twitter.com/jmkdev
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Framework :: AsyncIO
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

<p align="center" width="100%">
    <img src="https://raw.githubusercontent.com/ro-py/ro.py/main/resources/textlogo.svg" alt="ro.py" height="128em" />
    <br />
</p>
<p align="center">
    <a href="https://github.com/ro-py/ro.py">GitHub</a> |
    <a href="https://discord.gg/UKPaPu4teg">Discord</a> |
    <a href="https://pypi.org/project/roblox/">PyPI</a> |
    <a href="https://ro.py.jmk.gg/">Documentation</a> |
    <a href="https://github.com/ro-py/ro.py/tree/main/examples">Examples</a> |
    <a href="https://github.com/ro-py/ro.py/blob/main/LICENSE">License</a>
</p>
<p align="center">
    <a href="https://discord.gg/UKPaPu4teg"><img src="https://img.shields.io/discord/761603917490159676?style=flat-square&logo=discord" alt="RoAPI Discord"/></a>
    <a href="https://pypi.org/project/ro-py/"><img src="https://img.shields.io/pypi/v/roblox?style=flat-square" alt="ro.py PyPI"/></a>
    <a href="https://pypi.org/project/roblox/"><img src="https://img.shields.io/pypi/dm/roblox?style=flat-square" alt="ro.py PyPI Downloads"/></a>
    <a href="https://pypi.org/project/roblox/"><img src="https://img.shields.io/pypi/dm/ro-py?style=flat-square" alt="ro.py PyPI Downloads (Legacy)"/></a>
    <a href="https://pypi.org/project/ro-py/"><img src="https://img.shields.io/pypi/l/roblox?style=flat-square" alt="ro.py PyPI License"/></a>
    <a href="https://github.com/ro-py/ro.py"><img src="https://img.shields.io/github/commit-activity/w/rbx-libdev/ro.py?style=flat-square" alt="ro.py GitHub Commit Activity"/></a>
    <a href="https://github.com/ro-py/ro.py"><img src="https://img.shields.io/github/last-commit/rbx-libdev/ro.py?style=flat-square" alt="ro.py GitHub Last Commit"/></a>
</p>

# Overview
Welcome to ro.py! ro.py is an asynchronous, object-oriented wrapper for the Roblox web API.

# Features
The key features are:  

- **Asynchronous**: ro.py works well with asynchronous frameworks like [FastAPI](https://fastapi.tiangolo.com/) and 
[discord.py](https://github.com/Rapptz/discord.py).  
- **Easy**: ro.py's client-based model is intuitive and easy to learn for both the beginner and expert developer. It
  abstracts away API requests and leaves you with simple objects that represent data types on the Roblox platform.
- **Flexible**: ro.py's builtin Requests object allows the user to do things that we haven't already implemented
ourselves without dealing with advanced Roblox-specific concepts.

# Installation
To install ro.py from PyPI, you can install with pip:
```
pip install roblox
```

To install the latest unstable version of ro.py, install [git-scm](https://git-scm.com/downloads) and run the following:
```
pip install git+git://github.com/ro-py/ro.py.git
```

# Tutorial
Learn how to use ro.py in our docs:
https://ro.py.jmk.gg/tutorial/


