ro.py icon indicating copy to clipboard operation
ro.py copied to clipboard

ro.py is a modern, asynchronous Python 3 wrapper for the Roblox API.

Results 22 ro.py issues
Sort by recently updated
recently updated
newest added

Add group_search to client. E.g: ``` async for group in client.group_search("roblox").items(10): print(group.name) ``` Returns: ``` Roblox Roblox High School: Fan Club RODNY ROBLOX Roblox Wiki Studios Military Roleplay Fan Roblox...

Contains a lot of old changes. I looked through old commits and added changes as I saw them. Did I miss any?

Fixes links to the Bases page for every get_base_XYZ method documentation and clarifies that get_base_XYZ is not asynchronous and does not need to be awaited in bases.md

Added some unit tests to the client as an example of how this would look and work.

**Is your feature request related to a problem? Please describe.** Yes, I wanted to customise timeouts but I didn't have a way so I wrote spaghetti code :=) **If your...

**Is your feature request related to a problem? Please describe.** I'm always frustrated when I can't use the expand function in the rewrite anymore to expand my users or other...

Right now, the Client has a lot of methods and is kind of polluted. ``` Assets: get_asset() get_base_asset() Badges: get_badge() get_base_badge() Groups: get_group() get_base_group() Places: get_place() get_places() Plugins: get_plugin() get_plugins()...

A utility method to download asset content. There's also a v2 api to fetch assets. It also requires 2 requests, but it's a json request first, instead of a redirect....

This adds support for the [`catalog.roblox.com`](https://catalog.roblox.com/docs/index.html) endpoint. Related changes include: * Bumping Python to 3.8 ([discussion in RoAPI Discord](https://discord.com/channels/761603917490159676/840208525136625674/1187993521383297054)) * The introduction of two new classes for catalog items, `CatalogItem`...