Module ro_py.gender

I hate how Roblox stores gender at all, it's really strange as it's not used for anything. There's literally no point in storing this information.

Expand source code
"""

I hate how Roblox stores gender at all, it's really strange as it's not used for anything.
There's literally no point in storing this information.

"""

import enum


class RobloxGender(enum.Enum):
    """
    Represents the gender of the authenticated Roblox client.
    """
    Other = 1
    Female = 2
    Male = 3

Classes

class RobloxGender (value, names=None, *, module=None, qualname=None, type=None, start=1)

Represents the gender of the authenticated Roblox client.

Expand source code
class RobloxGender(enum.Enum):
    """
    Represents the gender of the authenticated Roblox client.
    """
    Other = 1
    Female = 2
    Male = 3

Ancestors

  • enum.Enum

Class variables

var Female
var Male
var Other