mirror of https://github.com/testerSunshine/12306
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
494 B
32 lines
494 B
# -*- coding: utf8 -*-
|
|
__author__ = 'MR.wen'
|
|
|
|
import os
|
|
import yaml
|
|
|
|
|
|
def _get_yaml():
|
|
"""
|
|
解析yaml
|
|
:return: s 字典
|
|
"""
|
|
path = os.path.join(os.path.dirname(__file__) + '/ticket_config.yaml')
|
|
f = open(path)
|
|
s = yaml.load(f)
|
|
f.close()
|
|
return s
|
|
|
|
|
|
# def get_set_info():
|
|
# return _get_yaml()["set"]
|
|
#
|
|
#
|
|
# def get_ticke_peoples():
|
|
# return _get_yaml()["ticke_peoples"]
|
|
#
|
|
#
|
|
# def get_damatu():
|
|
# return _get_yaml()["damatu"]
|
|
#
|
|
#
|
|
# print _get_yaml() |