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.
12306/run.py

16 lines
271 B

# -*- coding=utf-8 -*-
from config.emailConf import sendEmail
from init import select_ticket_info
def run():
select_ticket_info.select().main()
def testEmail():
sendEmail(u"订票小助手测试一下")
if __name__ == '__main__':
run()
# testEmail()