Skip to main content

BloxPy: Your All-in-One Python API wrapper for Roblox Development

Project description

BloxPy: Your All-in-One Python API Wrapper for Roblox Development

BloxPy is the ultimate Python API wrapper for Roblox developers, offering an all-in-one solution to interact with Roblox Public APIs effortlessly. Whether you want to retrieve player data, manage groups, or create dynamic game interactions, BloxPy empowers you to build amazing Roblox experiences with ease.

PyPI Version Python Version

Features

  • Effortlessly interact with Roblox Public APIs.
  • Retrieve player data, game information, and group details.
  • Simplify group management tasks, such as handling members and roles.
  • Create dynamic game interactions and enhance in-game experiences.

Installation

You can install BloxPy using pip:

pip install -U BloxPy

Usage

  • Users

from BloxPy import Users

# Fetch player data
player_id = 1234567890
player_data = Users.get_user(player_id)
print(player_data.name) # Username
print(player_data.displayName) # Display Name
  • Groups

from BloxPy import Groups

# Fetch group data
group_id = 1234567890
group_data = Groups.get_group(group_id)
print(group_data.name) # Group Name
print(group_data.memberCount) # Group Member Count
  • Search

from BloxPy import Search

# Fetch users by keyword
user_keyword = 'Henry'
user_search_results = Search.search_users(keyword)
print(user_search_results.data) # List containing data

for user in user_search_results.data:
    print(user.name) # Username
    print(user.id) # User ID

# Fetch groups by keyword
group_keyword = 'Roblox'
group_search_results = Search.search_groups(keyword)
print(group_search_results.data) # List containing data

for group in group_search_results.data:
    print(group.name) # Name
    print(group.description) # Description
    print(group.memberCount) # Member Count

Documentation

For detailed documentation and usage examples, check out the BloxPy Documentation.

Contributing

We welcome contributions from the community! If you find a bug or have an enhancement in mind, please open an issue or submit a pull request.

License

BloxPy is licensed under the MIT License. See the LICENSE file for details.

Contact

For questions or support, you can reach out to us at developer.x.business@gmail.com or join our Official Discord server.

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

BloxPy-0.1.15.tar.gz (11.4 kB view hashes)

Uploaded Source

Built Distribution

BloxPy-0.1.15-py3-none-any.whl (14.8 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