Bloxy.py || A Simple Python Wrapper for the Roblox API!


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 and await .
  • 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! :slightly_smiling_face:

5 Likes

why should i use this over ro.py?

Its for beginners. Anyone can use it. Im not saying ro.py isnt a good wrapper at all. You can use either.

nice bro. thanks 4 releasing this

1 Like

Ill being going to sleep soon. If I cant answer your question right when it is spoken. I will make sure to answer it in the morning.

v1.0.0 → v1.1.0
Due to new people not knowing how it works. I added one more example to the repository.

This is really cool! Love to see where this goes!

1 Like

1.1.0 → 1.2.0
Added 2 more functions. Functions can be found in the bloxy.py wiki.

1.2.0 → 1.2.1
Added 1 more example to wrap the whole thing up.

1.2.3 → 1.3.0b1

Fixed many bugs that where in the client class. Should be all fixed up now.

1.3.0b1 → 1.3.1.2b1
Fixed up many things that where causing bloxy to crash.