增加用户功能

This commit is contained in:
Jalin
2019-01-06 22:43:30 +08:00
parent 0553dc936b
commit 3446bfc9c2
14 changed files with 434 additions and 34 deletions

View File

@@ -4,12 +4,14 @@ from threading import Thread
from py12306.log.query_log import QueryLog
from py12306.query.query import Query
from py12306.user.user import User
def main():
# Thread(target=Query.run).start() # 余票查询
QueryLog.add_log('init')
Query.run()
# QueryLog.add_log('init')
# Query.run()
User.run()
pass