Module ro_py.catalog
This file houses functions and classes that pertain to the Roblox catalog.
Expand source code
"""
This file houses functions and classes that pertain to the Roblox catalog.
"""
import enum
class AppStore(enum.Enum):
"""
Represents an app store that the Roblox app is downloadable on.
"""
google_play = "GooglePlay"
android = "GooglePlay"
amazon = "Amazon"
fire = "Amazon"
ios = "iOS"
iphone = "iOS"
idevice = "iOS"
xbox = "Xbox"
Classes
class AppStore (value, names=None, *, module=None, qualname=None, type=None, start=1)-
Represents an app store that the Roblox app is downloadable on.
Expand source code
class AppStore(enum.Enum): """ Represents an app store that the Roblox app is downloadable on. """ google_play = "GooglePlay" android = "GooglePlay" amazon = "Amazon" fire = "Amazon" ios = "iOS" iphone = "iOS" idevice = "iOS" xbox = "Xbox"Ancestors
- enum.Enum
Class variables
var amazonvar androidvar firevar google_playvar idevicevar iosvar iphonevar xbox