Skip to main content

Handler for the Roblox API

Project description

PyBlox2

MIT License Version
High level library for making Roblox bots in Python

Examples

A Basic Example

import PyBlox2

client = PyBlox2.BloxClient()

@client.event
async def ready(ctx):
    await client.fetch("friend_requests")
    player = client.friend_requests[0]
    await player.fetch("friends")

    (player.friends[0])

@client.event
async def request(ctx):
    print("Received status code ", ctx[0].status)

client.run(ROBLOSECURITY) # ROBLOSECURITY COOKIE

Changing someone's role

import PyBlox2

client = PyBlox2.BloxClient()

@client.event
async def ready(ctx):
    group = await client.get_group(5029105)
    member = await group.get_member("fego2015")
    role = await group.get_role("Moderators")
    await member.set_role(role)

@client.event
async def request(ctx):

    ("Received status code ", ctx[0].status)

client.run(ROBLOSECURITY) # ROBLOSECURITY COOKIE

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PyBlox2-1.0.0.tar.gz (13.8 kB view hashes)

Uploaded Source

Built Distribution

PyBlox2-1.0.0-py3-none-any.whl (26.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page