mirror of
https://github.com/Justuser3310/ss14_chemistry_site.git
synced 2025-02-08 09:07:38 +00:00
14 lines
504 B
Python
14 lines
504 B
Python
|
from requests import get
|
||
|
from yaml import load, SafeLoader
|
||
|
|
||
|
def parse_yml(url = 'https://raw.githubusercontent.com/SerbiaStrong-220/space-station-14/master/Resources/Prototypes/Recipes/Reactions/medicine.yml'):
|
||
|
yml = load(get(url).content.decode('utf-8'), Loader=SafeLoader)
|
||
|
return yml
|
||
|
|
||
|
def parse_ftl(url = 'https://raw.githubusercontent.com/SerbiaStrong-220/space-station-14/master/Resources/Locale/ru-RU/reagents/meta/medicine.ftl'):
|
||
|
raw = get(url).content.decode('utf-8')
|
||
|
print(raw)
|
||
|
|
||
|
|
||
|
parse_ftl()
|