forked from python-docs-translations/dashboard
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_status.py
35 lines (26 loc) · 1005 Bytes
/
build_status.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
"""
Fetch build status of languages in the https://docs.python.org.
Yield a tuple of language code and a Boolean indicating
whether it is in the language switcher.
"""
import tomllib
from collections.abc import Iterator
import requests
def get_languages() -> Iterator[tuple[str, bool]]:
data = requests.get(
'https://raw.githubusercontent.com/'
'python/docsbuild-scripts/refs/heads/main/config.toml',
timeout=10,
).text
config = tomllib.loads(data)
for code, language in config['languages'].items():
language_code = code.lower().replace('_', '-')
in_switcher = language.get('in_prod', config['defaults']['in_prod'])
yield language_code, in_switcher
def main() -> None:
languages = {language: in_switcher for language, in_switcher in get_languages()}
print(languages)
for code in ('en', 'pl', 'ar', 'zh-cn', 'id'):
print(f'{code}: {code in languages} {languages.get(code)}')
if __name__ == '__main__':
main()