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 amazon
var android
var fire
var google_play
var idevice
var ios
var iphone
var xbox