BloxAPI
Powerful and versatile Python3 wrapper for ROBLOX Web API
Installation
pip install bloxypy
Information
Welcome, and thank you for using BloxAPI!
BloxAPI is an object oriented, asynchronous wrapper for the Roblox Web API (and other Roblox-related APIs) with many new and interesting features.
BloxAPI allows you to automate much of what you would do on the Roblox website and on other Roblox-related websites.
Get Started
To begin, first import and setup the client, which is the most essential part of BloxAPI, and initialize it like so:
from bloxapi import Client
client = Client()
print("Getting asset information...")
asset_result = client.get_asset(123456)
print(f"Asset result: {asset_result}")
print("\nGetting user information...")
user_result = client.get_user(1)
print(f"User result: {user_result}")
Disclaimer
We are not responsible for any malicious use of this library.
If you use this library in a way that violates the Roblox Terms of Use your account may be punished.
If you use code from BloxAPI in your own library, please credit us! We're working our hardest to deliver this library, and crediting us is the best way to help support the project.
Documentation
You can view documentation for BloxAPI at bloxapi.jmksite.dev.
If something's missing from docs, feel free to dive into the code and read the docstrings as most things are documented there. The docs are generated from docstrings in the code using pdoc3.
Installation
You can install BloxAPI from pip
pip3 install ro.py