mirror of https://github.com/testerSunshine/12306
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.
17 lines
353 B
17 lines
353 B
7 years ago
|
# coding=utf-8
|
||
|
|
||
|
|
||
|
class liftTicketInit:
|
||
|
def __init__(self, session):
|
||
|
self.session = session
|
||
|
|
||
|
def reqLiftTicketInit(self):
|
||
|
"""
|
||
|
请求抢票页面
|
||
|
:return:
|
||
|
"""
|
||
|
urls = self.session.urls["left_ticket_init"]
|
||
|
self.session.httpClint.send(urls)
|
||
|
return {
|
||
|
"status": True
|
||
|
}
|