Skip to content

Enums

BungieLanguage

Bases: Enum

Set your preferred language. This will impact the language of the manifest

Source code in src/bungio/models/enums.py
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class BungieLanguage(Enum):
    """
    Set your preferred language. This will impact the language of the manifest
    """

    ENGLISH = "en"
    FRENCH = "fr"
    SPANISH = "es"
    MEXICAN = "es-mx"
    GERMAN = "de"
    ITALIAN = "it"
    JAPANESE = "ja"
    PORTUGUESE = "pt-br"
    RUSSIAN = "ru"
    POLISH = "pl"
    KOREAN = "ko"
    CHINESE_TRADITIONAL = "zh-cht"
    CHINESE_SIMPLIFIED = "zh-chs"