Use Python to interact with the Roblox API with ro.py!

yea but in Python you are able to make a wrapper within lua and java and noode.js it’s not hard I use it in my Roblox products I make for my Company

When I run this code it says “cannot import name ‘Client’ from partially initialized module ‘roblox’ (most likely due to a circular import)”

import asyncio
from roblox import Client

async def main():
    token = input("ROBLOSECURITY: ")
    client = Client(token)
    user = await client.get_authenticated_user()
    print("Name:", user.name)
    print("Display Name:", user.display_name)
    print("Description:", user.description)

asyncio.get_event_loop().run_until_complete(main())