parent
2fa9b57ce3
commit
5c6917e40e
@ -0,0 +1,13 @@
|
||||
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()
|
Loading…
Reference in new issue