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