11 lines
311 B
Python
11 lines
311 B
Python
from xml.etree import ElementTree as elementTree
|
|
|
|
|
|
def parse_api_key(xml_path='/config/config.xml'):
|
|
root = elementTree.parse(xml_path).getroot()
|
|
api_key = ''
|
|
for gui in root.findall('gui'):
|
|
# noinspection SpellCheckingInspection
|
|
api_key = gui.find('apikey').text
|
|
return api_key
|