Source Code | Git clone link | Wiki
About Bloxy.py
Bloxy.py is mainly made for beginners (or dummies) who dont know how to use python or the roblox api. Our goal is to strive to make everything right! This was HIGHLY inspired by ro.py which I use all the time lol.
Key Features
- Covers a large majority of the ROBLOX API.
- Modern Pythonic API using
async
andawait
. - Easy and super simple to use.
Installation
Python 3.6.0 or higher is required
# Upgrade pip
# If 'python' does not work try 'py'
$ python -m pip install --upgrade pip
# Install the Module
$ pip install git+https://github.com/IcyDevv/bloxy.py.git
Example Project
import bloxypy
import asyncio
client = bloxypy.Client(None)
async def main():
user_object = await client.get_user_by_id(1) # This returns the user object.
if user_object: # Checking if this user exists.
print('This user exists!')
print(user_object.name, user_object.id, user_object.status, user_object.about)
asyncio.run(main())
Conclusion
If you want more info please change check out the source code above.
If you have any other issues please list them in the comments with screenshots, in the git repo issues section, or you can contact me SubToIcyYT#6269
Thanks for reading!