mirror of https://github.com/testerSunshine/12306
25 lines
588 B
Python
Executable File
25 lines
588 B
Python
Executable File
# -*- coding: utf8 -*-
|
|
from config import configCommon
|
|
|
|
__author__ = 'MR.wen'
|
|
import os
|
|
import yaml
|
|
|
|
|
|
def _get_yaml():
|
|
"""
|
|
解析yaml
|
|
:return: s 字典
|
|
"""
|
|
path = os.path.join(os.path.dirname(__file__) + '/ticket_config.yaml')
|
|
try: # 兼容2和3版本
|
|
with open(path, encoding="utf-8") as f:
|
|
s = yaml.load(f, Loader=yaml.FullLoader)
|
|
except Exception:
|
|
with open(path) as f:
|
|
s = yaml.load(f, Loader=yaml.FullLoader)
|
|
return s.decode() if isinstance(s, bytes) else s
|
|
|
|
|
|
if __name__ == '__main__':
|
|
print(_get_yaml()) |