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
263 B

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