mirror of https://github.com/testerSunshine/12306
22 lines
399 B
Python
Executable File
22 lines
399 B
Python
Executable File
# -*- coding=utf-8 -*-
|
|
from config.emailConf import sendEmail
|
|
from config.pushbearConf import sendPushBear
|
|
from init import select_ticket_info
|
|
|
|
|
|
def run():
|
|
select_ticket_info.select().main()
|
|
|
|
|
|
def Email():
|
|
sendEmail(u"订票小助手测试一下")
|
|
|
|
|
|
def PushbearConf():
|
|
sendPushBear("订票小助手测试一下")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
run()
|
|
# Email()
|
|
# PushbearConf() |