فهرست منبع

完成人工定时

derrickx 1 سال پیش
والد
کامیت
807d5e50c1
8فایلهای تغییر یافته به همراه237 افزوده شده و 35 حذف شده
  1. BIN
      __pycache__/app.cpython-311.pyc
  2. BIN
      __pycache__/litter_helper.cpython-311.pyc
  3. 64 0
      app.py
  4. 1 8
      litter_helper.py
  5. 1 24
      litter_helper.ui
  6. 125 0
      logs/spider-terminal_2024-06-29.log
  7. 32 3
      main.py
  8. 14 0
      results/2024-06-29.txt

BIN
__pycache__/app.cpython-311.pyc


BIN
__pycache__/litter_helper.cpython-311.pyc


+ 64 - 0
app.py

@@ -619,6 +619,37 @@ def process_running(max_threads, pocket_url):
             thread.join()
             thread.join()
 
 
 
 
+"""
+手动定时
+"""
+
+
+def process_running_manual(max_threads, pocket_url):
+    # log_name = f"data_{datetime.datetime.now().strftime('%Y%m%d%H%M')}.txt"
+
+    while True:
+        with open('accounts.txt', 'r') as accounts:
+            account_list = accounts.readlines()
+
+        threads = []
+        for account in account_list:
+            single_proxy, random_index = get_random_proxy_at_redis(600)
+            thread = threading.Thread(target=process_account,
+                                      args=(pocket_url, account.strip(), single_proxy))
+            threads.append(thread)
+            thread.start()
+
+            # 如果当前线程数达到上限,等待有线程结束后再创建新线程
+            if len(threads) == max_threads:
+                for t in threads:
+                    t.join()
+                threads.clear()
+
+        # 等待所有线程执行完毕
+        for thread in threads:
+            thread.join()
+
+
 """
 """
 账号批量登陆
 账号批量登陆
 """
 """
@@ -716,11 +747,44 @@ def run_daily_job(hour, minute):
     scheduler.run()
     scheduler.run()
 
 
 
 
+"""
+手动定时任务
+"""
+
+
+def run_manual_job(hour, minute, pocket_url):
+    # 获取当前日期和时间
+    now = datetime.datetime.now()
+    # 计算下次运行时间
+    run_time = datetime.datetime(now.year, now.month, now.day, hour, minute)
+    if run_time < now:
+        # 如果运行时间小于当前时间,则在明天的相应时间运行任务
+        run_time = run_time + datetime.timedelta(days=1)
+    # 计算等待时间
+    wait_time = (run_time - now).total_seconds()
+    # 创建定时器对象
+    scheduler = sched.scheduler(time.time, time.sleep)
+    # 添加定时任务
+    scheduler.enter(wait_time, 1, manual_job, argument=(pocket_url,))
+    # 启动定时器
+    scheduler.run()
+
+
 def looper_job():
 def looper_job():
     while 1:
     while 1:
         process_running(max_threads=1, pocket_url='https://t.livepocket.jp/e/l3im7')
         process_running(max_threads=1, pocket_url='https://t.livepocket.jp/e/l3im7')
 
 
 
 
+"""
+手动定时
+"""
+
+
+def manual_job(pocket_url):
+    while 1:
+        process_running_manual(max_threads=1, pocket_url=pocket_url)
+
+
 if __name__ == '__main__':
 if __name__ == '__main__':
     # 下面一行代码即可打包多进程
     # 下面一行代码即可打包多进程
     multiprocessing.freeze_support()
     multiprocessing.freeze_support()

+ 1 - 8
litter_helper.py

@@ -26,15 +26,9 @@ class Ui_menu(object):
         self.label_2 = QtWidgets.QLabel(self.centralwidget)
         self.label_2 = QtWidgets.QLabel(self.centralwidget)
         self.label_2.setGeometry(QtCore.QRect(60, 90, 60, 16))
         self.label_2.setGeometry(QtCore.QRect(60, 90, 60, 16))
         self.label_2.setObjectName("label_2")
         self.label_2.setObjectName("label_2")
-        self.label_3 = QtWidgets.QLabel(self.centralwidget)
-        self.label_3.setGeometry(QtCore.QRect(60, 150, 60, 16))
-        self.label_3.setObjectName("label_3")
         self.startDateTimeEdit = QtWidgets.QDateTimeEdit(self.centralwidget)
         self.startDateTimeEdit = QtWidgets.QDateTimeEdit(self.centralwidget)
         self.startDateTimeEdit.setGeometry(QtCore.QRect(130, 90, 194, 22))
         self.startDateTimeEdit.setGeometry(QtCore.QRect(130, 90, 194, 22))
         self.startDateTimeEdit.setObjectName("startDateTimeEdit")
         self.startDateTimeEdit.setObjectName("startDateTimeEdit")
-        self.endDateTimeEdit = QtWidgets.QDateTimeEdit(self.centralwidget)
-        self.endDateTimeEdit.setGeometry(QtCore.QRect(130, 150, 194, 22))
-        self.endDateTimeEdit.setObjectName("endDateTimeEdit")
         self.label_4 = QtWidgets.QLabel(self.centralwidget)
         self.label_4 = QtWidgets.QLabel(self.centralwidget)
         self.label_4.setGeometry(QtCore.QRect(460, 40, 60, 16))
         self.label_4.setGeometry(QtCore.QRect(460, 40, 60, 16))
         self.label_4.setObjectName("label_4")
         self.label_4.setObjectName("label_4")
@@ -51,7 +45,7 @@ class Ui_menu(object):
         self.accountsLabel.setGeometry(QtCore.QRect(380, 90, 60, 16))
         self.accountsLabel.setGeometry(QtCore.QRect(380, 90, 60, 16))
         self.accountsLabel.setObjectName("accountsLabel")
         self.accountsLabel.setObjectName("accountsLabel")
         self.watchPushButton = QtWidgets.QPushButton(self.centralwidget)
         self.watchPushButton = QtWidgets.QPushButton(self.centralwidget)
-        self.watchPushButton.setGeometry(QtCore.QRect(180, 210, 81, 26))
+        self.watchPushButton.setGeometry(QtCore.QRect(190, 210, 81, 26))
         self.watchPushButton.setObjectName("watchPushButton")
         self.watchPushButton.setObjectName("watchPushButton")
         self.ipPoolLabel = QtWidgets.QLabel(self.centralwidget)
         self.ipPoolLabel = QtWidgets.QLabel(self.centralwidget)
         self.ipPoolLabel.setGeometry(QtCore.QRect(510, 90, 71, 16))
         self.ipPoolLabel.setGeometry(QtCore.QRect(510, 90, 71, 16))
@@ -85,7 +79,6 @@ class Ui_menu(object):
         menu.setWindowTitle(_translate("menu", "AutomaticCoupon"))
         menu.setWindowTitle(_translate("menu", "AutomaticCoupon"))
         self.label.setText(_translate("menu", "输入网址:"))
         self.label.setText(_translate("menu", "输入网址:"))
         self.label_2.setText(_translate("menu", "开始时间:"))
         self.label_2.setText(_translate("menu", "开始时间:"))
-        self.label_3.setText(_translate("menu", "结束时间:"))
         self.label_4.setText(_translate("menu", "并发数:"))
         self.label_4.setText(_translate("menu", "并发数:"))
         self.startPushButton.setText(_translate("menu", "开始下单"))
         self.startPushButton.setText(_translate("menu", "开始下单"))
         self.endPushButton.setText(_translate("menu", "停止下单"))
         self.endPushButton.setText(_translate("menu", "停止下单"))

+ 1 - 24
litter_helper.ui

@@ -50,19 +50,6 @@
      <string>开始时间:</string>
      <string>开始时间:</string>
     </property>
     </property>
    </widget>
    </widget>
-   <widget class="QLabel" name="label_3">
-    <property name="geometry">
-     <rect>
-      <x>60</x>
-      <y>150</y>
-      <width>60</width>
-      <height>16</height>
-     </rect>
-    </property>
-    <property name="text">
-     <string>结束时间:</string>
-    </property>
-   </widget>
    <widget class="QDateTimeEdit" name="startDateTimeEdit">
    <widget class="QDateTimeEdit" name="startDateTimeEdit">
     <property name="geometry">
     <property name="geometry">
      <rect>
      <rect>
@@ -73,16 +60,6 @@
      </rect>
      </rect>
     </property>
     </property>
    </widget>
    </widget>
-   <widget class="QDateTimeEdit" name="endDateTimeEdit">
-    <property name="geometry">
-     <rect>
-      <x>130</x>
-      <y>150</y>
-      <width>194</width>
-      <height>22</height>
-     </rect>
-    </property>
-   </widget>
    <widget class="QLabel" name="label_4">
    <widget class="QLabel" name="label_4">
     <property name="geometry">
     <property name="geometry">
      <rect>
      <rect>
@@ -148,7 +125,7 @@
    <widget class="QPushButton" name="watchPushButton">
    <widget class="QPushButton" name="watchPushButton">
     <property name="geometry">
     <property name="geometry">
      <rect>
      <rect>
-      <x>180</x>
+      <x>190</x>
       <y>210</y>
       <y>210</y>
       <width>81</width>
       <width>81</width>
       <height>26</height>
       <height>26</height>

+ 125 - 0
logs/spider-terminal_2024-06-29.log

@@ -2608,3 +2608,128 @@
 {"text": "2024-06-29 17:54:57 WARNING From app.get_ticket_order : redirect_url3 is None\n", "record": {"elapsed": {"repr": "0:00:04.256625", "seconds": 4.256625}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket_order", "level": {"icon": "\u26a0\ufe0f", "name": "WARNING", "no": 30}, "line": 525, "message": "redirect_url3 is None", "module": "app", "name": "app", "process": {"id": 25083, "name": "MainProcess"}, "thread": {"id": 123146339835904, "name": "Thread-48 (get_ticket_order)"}, "time": {"repr": "2024-06-29 17:54:57.409159+08:00", "timestamp": 1719654897.409159}}}
 {"text": "2024-06-29 17:54:57 WARNING From app.get_ticket_order : redirect_url3 is None\n", "record": {"elapsed": {"repr": "0:00:04.256625", "seconds": 4.256625}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket_order", "level": {"icon": "\u26a0\ufe0f", "name": "WARNING", "no": 30}, "line": 525, "message": "redirect_url3 is None", "module": "app", "name": "app", "process": {"id": 25083, "name": "MainProcess"}, "thread": {"id": 123146339835904, "name": "Thread-48 (get_ticket_order)"}, "time": {"repr": "2024-06-29 17:54:57.409159+08:00", "timestamp": 1719654897.409159}}}
 {"text": "2024-06-29 17:54:57 INFO From utils.get_external_ip : \u516c\u7f51\u51fa\u53e3IP\u5730\u5740\uff1a202.81.229.99\n", "record": {"elapsed": {"repr": "0:00:04.497568", "seconds": 4.497568}, "exception": null, "extra": {}, "file": {"name": "utils.py", "path": "/Volumes/work/project/awesome-python/tools/utils.py"}, "function": "get_external_ip", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 324, "message": "\u516c\u7f51\u51fa\u53e3IP\u5730\u5740\uff1a202.81.229.99", "module": "utils", "name": "tools.utils", "process": {"id": 25083, "name": "MainProcess"}, "thread": {"id": 123145836150784, "name": "Thread-18 (get_ticket_order)"}, "time": {"repr": "2024-06-29 17:54:57.650102+08:00", "timestamp": 1719654897.650102}}}
 {"text": "2024-06-29 17:54:57 INFO From utils.get_external_ip : \u516c\u7f51\u51fa\u53e3IP\u5730\u5740\uff1a202.81.229.99\n", "record": {"elapsed": {"repr": "0:00:04.497568", "seconds": 4.497568}, "exception": null, "extra": {}, "file": {"name": "utils.py", "path": "/Volumes/work/project/awesome-python/tools/utils.py"}, "function": "get_external_ip", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 324, "message": "\u516c\u7f51\u51fa\u53e3IP\u5730\u5740\uff1a202.81.229.99", "module": "utils", "name": "tools.utils", "process": {"id": 25083, "name": "MainProcess"}, "thread": {"id": 123145836150784, "name": "Thread-18 (get_ticket_order)"}, "time": {"repr": "2024-06-29 17:54:57.650102+08:00", "timestamp": 1719654897.650102}}}
 {"text": "2024-06-29 17:54:57 INFO From app.get_ticket_order : login account:satmisauos25@huatcn.com\n, \u672c\u673a\u51fa\u53e3IP:202.81.229.99\u3001\u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20001 \u88ab\u5c01!!!\n", "record": {"elapsed": {"repr": "0:00:04.497861", "seconds": 4.497861}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket_order", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 399, "message": "login account:satmisauos25@huatcn.com\n, \u672c\u673a\u51fa\u53e3IP:202.81.229.99\u3001\u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20001 \u88ab\u5c01!!!", "module": "app", "name": "app", "process": {"id": 25083, "name": "MainProcess"}, "thread": {"id": 123145836150784, "name": "Thread-18 (get_ticket_order)"}, "time": {"repr": "2024-06-29 17:54:57.650395+08:00", "timestamp": 1719654897.650395}}}
 {"text": "2024-06-29 17:54:57 INFO From app.get_ticket_order : login account:satmisauos25@huatcn.com\n, \u672c\u673a\u51fa\u53e3IP:202.81.229.99\u3001\u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20001 \u88ab\u5c01!!!\n", "record": {"elapsed": {"repr": "0:00:04.497861", "seconds": 4.497861}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket_order", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 399, "message": "login account:satmisauos25@huatcn.com\n, \u672c\u673a\u51fa\u53e3IP:202.81.229.99\u3001\u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20001 \u88ab\u5c01!!!", "module": "app", "name": "app", "process": {"id": 25083, "name": "MainProcess"}, "thread": {"id": 123145836150784, "name": "Thread-18 (get_ticket_order)"}, "time": {"repr": "2024-06-29 17:54:57.650395+08:00", "timestamp": 1719654897.650395}}}
+{"text": "2024-06-29 20:32:00 INFO From app.get_ticket : target_url: https://t.livepocket.jp/e/l3im7, account: piaop@huatcn.com, passwd: panyue666\n", "record": {"elapsed": {"repr": "0:00:15.950117", "seconds": 15.950117}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 118, "message": "target_url: https://t.livepocket.jp/e/l3im7, account: piaop@huatcn.com, passwd: panyue666", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145565200384, "name": "Thread-1 (process_account)"}, "time": {"repr": "2024-06-29 20:32:00.002836+08:00", "timestamp": 1719664320.002836}}}
+{"text": "2024-06-29 20:32:00 INFO From app.get_ticket : proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20306'}\n", "record": {"elapsed": {"repr": "0:00:15.951276", "seconds": 15.951276}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 126, "message": "proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20306'}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145565200384, "name": "Thread-1 (process_account)"}, "time": {"repr": "2024-06-29 20:32:00.003995+08:00", "timestamp": 1719664320.003995}}}
+{"text": "2024-06-29 20:32:00 INFO From app.get_ticket : login account:piaop@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20306, token: echrlxw8JFgGx6bAMq6ONYHMLBGzCPkXs9LxmWV6 login success!!!\n", "record": {"elapsed": {"repr": "0:00:16.666471", "seconds": 16.666471}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 180, "message": "login account:piaop@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20306, token: echrlxw8JFgGx6bAMq6ONYHMLBGzCPkXs9LxmWV6 login success!!!", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145565200384, "name": "Thread-1 (process_account)"}, "time": {"repr": "2024-06-29 20:32:00.719190+08:00", "timestamp": 1719664320.71919}}}
+{"text": "2024-06-29 20:32:02 INFO From app.get_ticket : event_id: 322491\n", "record": {"elapsed": {"repr": "0:00:18.135169", "seconds": 18.135169}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 205, "message": "event_id: 322491", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145565200384, "name": "Thread-1 (process_account)"}, "time": {"repr": "2024-06-29 20:32:02.187888+08:00", "timestamp": 1719664322.187888}}}
+{"text": "2024-06-29 20:32:03 INFO From app.get_ticket : ticket_id: 1565885\n", "record": {"elapsed": {"repr": "0:00:19.355509", "seconds": 19.355509}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 224, "message": "ticket_id: 1565885", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145565200384, "name": "Thread-1 (process_account)"}, "time": {"repr": "2024-06-29 20:32:03.408228+08:00", "timestamp": 1719664323.408228}}}
+{"text": "2024-06-29 20:32:03 INFO From app.get_ticket : form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}\n", "record": {"elapsed": {"repr": "0:00:19.355951", "seconds": 19.355951}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 259, "message": "form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145565200384, "name": "Thread-1 (process_account)"}, "time": {"repr": "2024-06-29 20:32:03.408670+08:00", "timestamp": 1719664323.40867}}}
+{"text": "2024-06-29 20:32:04 INFO From app.get_ticket : response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:03 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 c5e1aaa19b3296105cb0f00636b61c3e.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'uveqY9zOZenVvCGEVc43kAz70BmTFUD1n9_-Fxw0ZSKYAPiekAXCYg=='}\n", "record": {"elapsed": {"repr": "0:00:19.955272", "seconds": 19.955272}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 262, "message": "response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:03 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 c5e1aaa19b3296105cb0f00636b61c3e.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'uveqY9zOZenVvCGEVc43kAz70BmTFUD1n9_-Fxw0ZSKYAPiekAXCYg=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145565200384, "name": "Thread-1 (process_account)"}, "time": {"repr": "2024-06-29 20:32:04.007991+08:00", "timestamp": 1719664324.007991}}}
+{"text": "2024-06-29 20:32:04 INFO From app.get_ticket : redirect_url1: https://t.livepocket.jp/event?id=322491\n", "record": {"elapsed": {"repr": "0:00:19.955664", "seconds": 19.955664}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 265, "message": "redirect_url1: https://t.livepocket.jp/event?id=322491", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145565200384, "name": "Thread-1 (process_account)"}, "time": {"repr": "2024-06-29 20:32:04.008383+08:00", "timestamp": 1719664324.008383}}}
+{"text": "2024-06-29 20:32:04 INFO From app.get_ticket : response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:04 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 c5e1aaa19b3296105cb0f00636b61c3e.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'y-yHbYFbobrvCLFf478ZoDnAmH6yvUg6BrOOWJjb8xuYKlWsO-A-Yw=='}\n", "record": {"elapsed": {"repr": "0:00:20.460636", "seconds": 20.460636}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 273, "message": "response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:04 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 c5e1aaa19b3296105cb0f00636b61c3e.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'y-yHbYFbobrvCLFf478ZoDnAmH6yvUg6BrOOWJjb8xuYKlWsO-A-Yw=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145565200384, "name": "Thread-1 (process_account)"}, "time": {"repr": "2024-06-29 20:32:04.513355+08:00", "timestamp": 1719664324.513355}}}
+{"text": "2024-06-29 20:32:04 INFO From app.get_ticket : redirect_url2: https://t.livepocket.jp/e/l3im7\n", "record": {"elapsed": {"repr": "0:00:20.461009", "seconds": 20.461009}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 276, "message": "redirect_url2: https://t.livepocket.jp/e/l3im7", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145565200384, "name": "Thread-1 (process_account)"}, "time": {"repr": "2024-06-29 20:32:04.513728+08:00", "timestamp": 1719664324.513728}}}
+{"text": "2024-06-29 20:32:05 WARNING From app.get_ticket : redirect_url3 is None\n", "record": {"elapsed": {"repr": "0:00:21.438999", "seconds": 21.438999}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u26a0\ufe0f", "name": "WARNING", "no": 30}, "line": 289, "message": "redirect_url3 is None", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145565200384, "name": "Thread-1 (process_account)"}, "time": {"repr": "2024-06-29 20:32:05.491718+08:00", "timestamp": 1719664325.491718}}}
+{"text": "2024-06-29 20:32:05 INFO From app.get_ticket : target_url: https://t.livepocket.jp/e/l3im7, account: zhnggg@huatcn.com, passwd: panyue666\n", "record": {"elapsed": {"repr": "0:00:21.440532", "seconds": 21.440532}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 118, "message": "target_url: https://t.livepocket.jp/e/l3im7, account: zhnggg@huatcn.com, passwd: panyue666", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-2 (process_account)"}, "time": {"repr": "2024-06-29 20:32:05.493251+08:00", "timestamp": 1719664325.493251}}}
+{"text": "2024-06-29 20:32:05 INFO From app.get_ticket : proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20498'}\n", "record": {"elapsed": {"repr": "0:00:21.440791", "seconds": 21.440791}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 126, "message": "proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20498'}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-2 (process_account)"}, "time": {"repr": "2024-06-29 20:32:05.493510+08:00", "timestamp": 1719664325.49351}}}
+{"text": "2024-06-29 20:32:06 INFO From app.get_ticket : login account:zhnggg@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20498, token: JsTnOvCuM7eejdjI1izo06AbwwI1WvZzg9YqEPUG login success!!!\n", "record": {"elapsed": {"repr": "0:00:22.110526", "seconds": 22.110526}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 180, "message": "login account:zhnggg@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20498, token: JsTnOvCuM7eejdjI1izo06AbwwI1WvZzg9YqEPUG login success!!!", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-2 (process_account)"}, "time": {"repr": "2024-06-29 20:32:06.163245+08:00", "timestamp": 1719664326.163245}}}
+{"text": "2024-06-29 20:32:06 INFO From app.get_ticket : form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}\n", "record": {"elapsed": {"repr": "0:00:22.112650", "seconds": 22.11265}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 259, "message": "form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-2 (process_account)"}, "time": {"repr": "2024-06-29 20:32:06.165369+08:00", "timestamp": 1719664326.165369}}}
+{"text": "2024-06-29 20:32:07 INFO From app.get_ticket : response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:06 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 abb12b0f5c7d761186642cc265dbdd32.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'ZEhLfMh0Sa5NsczjpPyzKzINRgF_DNWAG8VzGOCogTbryNNoPAMXJg=='}\n", "record": {"elapsed": {"repr": "0:00:23.016110", "seconds": 23.01611}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 262, "message": "response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:06 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 abb12b0f5c7d761186642cc265dbdd32.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'ZEhLfMh0Sa5NsczjpPyzKzINRgF_DNWAG8VzGOCogTbryNNoPAMXJg=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-2 (process_account)"}, "time": {"repr": "2024-06-29 20:32:07.068829+08:00", "timestamp": 1719664327.068829}}}
+{"text": "2024-06-29 20:32:07 INFO From app.get_ticket : redirect_url1: https://t.livepocket.jp/event?id=322491\n", "record": {"elapsed": {"repr": "0:00:23.016484", "seconds": 23.016484}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 265, "message": "redirect_url1: https://t.livepocket.jp/event?id=322491", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-2 (process_account)"}, "time": {"repr": "2024-06-29 20:32:07.069203+08:00", "timestamp": 1719664327.069203}}}
+{"text": "2024-06-29 20:32:07 INFO From app.get_ticket : response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:07 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 abb12b0f5c7d761186642cc265dbdd32.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'rSxgoLx856r2s34A-1PU5_vbIM6iJPNUMdxOBC8xymBGXgI3F8-lwQ=='}\n", "record": {"elapsed": {"repr": "0:00:23.470401", "seconds": 23.470401}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 273, "message": "response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:07 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 abb12b0f5c7d761186642cc265dbdd32.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'rSxgoLx856r2s34A-1PU5_vbIM6iJPNUMdxOBC8xymBGXgI3F8-lwQ=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-2 (process_account)"}, "time": {"repr": "2024-06-29 20:32:07.523120+08:00", "timestamp": 1719664327.52312}}}
+{"text": "2024-06-29 20:32:07 INFO From app.get_ticket : redirect_url2: https://t.livepocket.jp/e/l3im7\n", "record": {"elapsed": {"repr": "0:00:23.470768", "seconds": 23.470768}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 276, "message": "redirect_url2: https://t.livepocket.jp/e/l3im7", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-2 (process_account)"}, "time": {"repr": "2024-06-29 20:32:07.523487+08:00", "timestamp": 1719664327.523487}}}
+{"text": "2024-06-29 20:32:09 WARNING From app.get_ticket : redirect_url3 is None\n", "record": {"elapsed": {"repr": "0:00:25.021666", "seconds": 25.021666}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u26a0\ufe0f", "name": "WARNING", "no": 30}, "line": 289, "message": "redirect_url3 is None", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-2 (process_account)"}, "time": {"repr": "2024-06-29 20:32:09.074385+08:00", "timestamp": 1719664329.074385}}}
+{"text": "2024-06-29 20:32:09 INFO From app.get_ticket : target_url: https://t.livepocket.jp/e/l3im7, account: 576h0@huatcn.com, passwd: panyue666\n", "record": {"elapsed": {"repr": "0:00:25.023161", "seconds": 25.023161}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 118, "message": "target_url: https://t.livepocket.jp/e/l3im7, account: 576h0@huatcn.com, passwd: panyue666", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-3 (process_account)"}, "time": {"repr": "2024-06-29 20:32:09.075880+08:00", "timestamp": 1719664329.07588}}}
+{"text": "2024-06-29 20:32:09 INFO From app.get_ticket : proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20544'}\n", "record": {"elapsed": {"repr": "0:00:25.023564", "seconds": 25.023564}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 126, "message": "proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20544'}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-3 (process_account)"}, "time": {"repr": "2024-06-29 20:32:09.076283+08:00", "timestamp": 1719664329.076283}}}
+{"text": "2024-06-29 20:32:09 INFO From app.get_ticket : login account:576h0@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20544, token: vfgRoY8dHex8EFT86DCbuQzDcRHu3ZMkSLuH5ooz login success!!!\n", "record": {"elapsed": {"repr": "0:00:25.890002", "seconds": 25.890002}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 180, "message": "login account:576h0@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20544, token: vfgRoY8dHex8EFT86DCbuQzDcRHu3ZMkSLuH5ooz login success!!!", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-3 (process_account)"}, "time": {"repr": "2024-06-29 20:32:09.942721+08:00", "timestamp": 1719664329.942721}}}
+{"text": "2024-06-29 20:32:09 INFO From app.get_ticket : form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}\n", "record": {"elapsed": {"repr": "0:00:25.891958", "seconds": 25.891958}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 259, "message": "form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-3 (process_account)"}, "time": {"repr": "2024-06-29 20:32:09.944677+08:00", "timestamp": 1719664329.944677}}}
+{"text": "2024-06-29 20:32:10 INFO From app.get_ticket : response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:10 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 206090c043abba27b018a5b67fa8c9ae.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'BxMkYUPawU-3UjE2OCXWz67Z3Nf3fKBzENU0eXLn5jSkQ_5PLKnLiQ=='}\n", "record": {"elapsed": {"repr": "0:00:26.848536", "seconds": 26.848536}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 262, "message": "response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:10 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 206090c043abba27b018a5b67fa8c9ae.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'BxMkYUPawU-3UjE2OCXWz67Z3Nf3fKBzENU0eXLn5jSkQ_5PLKnLiQ=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-3 (process_account)"}, "time": {"repr": "2024-06-29 20:32:10.901255+08:00", "timestamp": 1719664330.901255}}}
+{"text": "2024-06-29 20:32:10 INFO From app.get_ticket : redirect_url1: https://t.livepocket.jp/event?id=322491\n", "record": {"elapsed": {"repr": "0:00:26.848907", "seconds": 26.848907}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 265, "message": "redirect_url1: https://t.livepocket.jp/event?id=322491", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-3 (process_account)"}, "time": {"repr": "2024-06-29 20:32:10.901626+08:00", "timestamp": 1719664330.901626}}}
+{"text": "2024-06-29 20:32:11 INFO From app.get_ticket : response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:11 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 206090c043abba27b018a5b67fa8c9ae.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'Yu2DhoD271Famuyy5ZGL7ebg-ocvBpcUQ2N9BMAFMt4y388cTpDv-Q=='}\n", "record": {"elapsed": {"repr": "0:00:27.354330", "seconds": 27.35433}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 273, "message": "response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:11 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 206090c043abba27b018a5b67fa8c9ae.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'Yu2DhoD271Famuyy5ZGL7ebg-ocvBpcUQ2N9BMAFMt4y388cTpDv-Q=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-3 (process_account)"}, "time": {"repr": "2024-06-29 20:32:11.407049+08:00", "timestamp": 1719664331.407049}}}
+{"text": "2024-06-29 20:32:11 INFO From app.get_ticket : redirect_url2: https://t.livepocket.jp/e/l3im7\n", "record": {"elapsed": {"repr": "0:00:27.354665", "seconds": 27.354665}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 276, "message": "redirect_url2: https://t.livepocket.jp/e/l3im7", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-3 (process_account)"}, "time": {"repr": "2024-06-29 20:32:11.407384+08:00", "timestamp": 1719664331.407384}}}
+{"text": "2024-06-29 20:32:13 WARNING From app.get_ticket : redirect_url3 is None\n", "record": {"elapsed": {"repr": "0:00:29.198584", "seconds": 29.198584}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u26a0\ufe0f", "name": "WARNING", "no": 30}, "line": 289, "message": "redirect_url3 is None", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-3 (process_account)"}, "time": {"repr": "2024-06-29 20:32:13.251303+08:00", "timestamp": 1719664333.251303}}}
+{"text": "2024-06-29 20:32:13 INFO From app.get_ticket : target_url: https://t.livepocket.jp/e/l3im7, account: mq693@huatcn.com, passwd: panyue666\n", "record": {"elapsed": {"repr": "0:00:29.200032", "seconds": 29.200032}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 118, "message": "target_url: https://t.livepocket.jp/e/l3im7, account: mq693@huatcn.com, passwd: panyue666", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-4 (process_account)"}, "time": {"repr": "2024-06-29 20:32:13.252751+08:00", "timestamp": 1719664333.252751}}}
+{"text": "2024-06-29 20:32:13 INFO From app.get_ticket : proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20248'}\n", "record": {"elapsed": {"repr": "0:00:29.200372", "seconds": 29.200372}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 126, "message": "proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20248'}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-4 (process_account)"}, "time": {"repr": "2024-06-29 20:32:13.253091+08:00", "timestamp": 1719664333.253091}}}
+{"text": "2024-06-29 20:32:14 INFO From app.get_ticket : login account:mq693@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20248, token: Bjd9tybz3fzdFkUa06hb9mdns2lMqZy0BCm3ttX8 login success!!!\n", "record": {"elapsed": {"repr": "0:00:29.998230", "seconds": 29.99823}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 180, "message": "login account:mq693@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20248, token: Bjd9tybz3fzdFkUa06hb9mdns2lMqZy0BCm3ttX8 login success!!!", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-4 (process_account)"}, "time": {"repr": "2024-06-29 20:32:14.050949+08:00", "timestamp": 1719664334.050949}}}
+{"text": "2024-06-29 20:32:14 INFO From app.get_ticket : form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}\n", "record": {"elapsed": {"repr": "0:00:30.000244", "seconds": 30.000244}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 259, "message": "form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-4 (process_account)"}, "time": {"repr": "2024-06-29 20:32:14.052963+08:00", "timestamp": 1719664334.052963}}}
+{"text": "2024-06-29 20:32:14 INFO From app.get_ticket : response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:14 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 104ea624e4f70962cafa61b5caab7622.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'TaM_3yhg7INd1DPd9OunKZATzHAMd8Ji2fasXILtHH8xhprb84g58Q=='}\n", "record": {"elapsed": {"repr": "0:00:30.772293", "seconds": 30.772293}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 262, "message": "response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:14 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 104ea624e4f70962cafa61b5caab7622.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'TaM_3yhg7INd1DPd9OunKZATzHAMd8Ji2fasXILtHH8xhprb84g58Q=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-4 (process_account)"}, "time": {"repr": "2024-06-29 20:32:14.825012+08:00", "timestamp": 1719664334.825012}}}
+{"text": "2024-06-29 20:32:14 INFO From app.get_ticket : redirect_url1: https://t.livepocket.jp/event?id=322491\n", "record": {"elapsed": {"repr": "0:00:30.772667", "seconds": 30.772667}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 265, "message": "redirect_url1: https://t.livepocket.jp/event?id=322491", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-4 (process_account)"}, "time": {"repr": "2024-06-29 20:32:14.825386+08:00", "timestamp": 1719664334.825386}}}
+{"text": "2024-06-29 20:32:15 INFO From app.get_ticket : response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:15 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 104ea624e4f70962cafa61b5caab7622.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'txwqoRnMNLAfKD3QFBRHCaHfaiJTBNhLaQtTWKKwAcOZOdMdttmrxg=='}\n", "record": {"elapsed": {"repr": "0:00:31.267255", "seconds": 31.267255}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 273, "message": "response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:15 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 104ea624e4f70962cafa61b5caab7622.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'txwqoRnMNLAfKD3QFBRHCaHfaiJTBNhLaQtTWKKwAcOZOdMdttmrxg=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-4 (process_account)"}, "time": {"repr": "2024-06-29 20:32:15.319974+08:00", "timestamp": 1719664335.319974}}}
+{"text": "2024-06-29 20:32:15 INFO From app.get_ticket : redirect_url2: https://t.livepocket.jp/e/l3im7\n", "record": {"elapsed": {"repr": "0:00:31.267621", "seconds": 31.267621}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 276, "message": "redirect_url2: https://t.livepocket.jp/e/l3im7", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-4 (process_account)"}, "time": {"repr": "2024-06-29 20:32:15.320340+08:00", "timestamp": 1719664335.32034}}}
+{"text": "2024-06-29 20:32:16 WARNING From app.get_ticket : redirect_url3 is None\n", "record": {"elapsed": {"repr": "0:00:32.559394", "seconds": 32.559394}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u26a0\ufe0f", "name": "WARNING", "no": 30}, "line": 289, "message": "redirect_url3 is None", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-4 (process_account)"}, "time": {"repr": "2024-06-29 20:32:16.612113+08:00", "timestamp": 1719664336.612113}}}
+{"text": "2024-06-29 20:32:16 INFO From app.get_ticket : target_url: https://t.livepocket.jp/e/l3im7, account: 26e4b@huatcn.com, passwd: panyue666\n", "record": {"elapsed": {"repr": "0:00:32.560564", "seconds": 32.560564}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 118, "message": "target_url: https://t.livepocket.jp/e/l3im7, account: 26e4b@huatcn.com, passwd: panyue666", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-5 (process_account)"}, "time": {"repr": "2024-06-29 20:32:16.613283+08:00", "timestamp": 1719664336.613283}}}
+{"text": "2024-06-29 20:32:16 INFO From app.get_ticket : proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20511'}\n", "record": {"elapsed": {"repr": "0:00:32.560898", "seconds": 32.560898}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 126, "message": "proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20511'}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-5 (process_account)"}, "time": {"repr": "2024-06-29 20:32:16.613617+08:00", "timestamp": 1719664336.613617}}}
+{"text": "2024-06-29 20:32:17 INFO From app.get_ticket : login account:26e4b@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20511, token: lCLBUxHa7wx1Wjd6rELUMcvSkiMBdwlzEQhwoi3y login success!!!\n", "record": {"elapsed": {"repr": "0:00:33.184069", "seconds": 33.184069}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 180, "message": "login account:26e4b@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20511, token: lCLBUxHa7wx1Wjd6rELUMcvSkiMBdwlzEQhwoi3y login success!!!", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-5 (process_account)"}, "time": {"repr": "2024-06-29 20:32:17.236788+08:00", "timestamp": 1719664337.236788}}}
+{"text": "2024-06-29 20:32:17 INFO From app.get_ticket : form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}\n", "record": {"elapsed": {"repr": "0:00:33.191968", "seconds": 33.191968}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 259, "message": "form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-5 (process_account)"}, "time": {"repr": "2024-06-29 20:32:17.244687+08:00", "timestamp": 1719664337.244687}}}
+{"text": "2024-06-29 20:32:18 INFO From app.get_ticket : response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:17 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 4131ec989d99fd1d462624964e79e8a2.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'Lqu6jBybMf4vdH5hopdBC0sukohSq-P0srGYDU1qiQpVqowMRwMpUA=='}\n", "record": {"elapsed": {"repr": "0:00:33.995979", "seconds": 33.995979}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 262, "message": "response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:17 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 4131ec989d99fd1d462624964e79e8a2.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'Lqu6jBybMf4vdH5hopdBC0sukohSq-P0srGYDU1qiQpVqowMRwMpUA=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-5 (process_account)"}, "time": {"repr": "2024-06-29 20:32:18.048698+08:00", "timestamp": 1719664338.048698}}}
+{"text": "2024-06-29 20:32:18 INFO From app.get_ticket : redirect_url1: https://t.livepocket.jp/event?id=322491\n", "record": {"elapsed": {"repr": "0:00:33.996303", "seconds": 33.996303}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 265, "message": "redirect_url1: https://t.livepocket.jp/event?id=322491", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-5 (process_account)"}, "time": {"repr": "2024-06-29 20:32:18.049022+08:00", "timestamp": 1719664338.049022}}}
+{"text": "2024-06-29 20:32:18 INFO From app.get_ticket : response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:18 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 4131ec989d99fd1d462624964e79e8a2.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'CV5sDroNpDKPtC4ZAOiOMmbTGEj1RJksMtukHOGZKaUIbBSaR-iTlQ=='}\n", "record": {"elapsed": {"repr": "0:00:34.516842", "seconds": 34.516842}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 273, "message": "response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:18 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 4131ec989d99fd1d462624964e79e8a2.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'CV5sDroNpDKPtC4ZAOiOMmbTGEj1RJksMtukHOGZKaUIbBSaR-iTlQ=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-5 (process_account)"}, "time": {"repr": "2024-06-29 20:32:18.569561+08:00", "timestamp": 1719664338.569561}}}
+{"text": "2024-06-29 20:32:18 INFO From app.get_ticket : redirect_url2: https://t.livepocket.jp/e/l3im7\n", "record": {"elapsed": {"repr": "0:00:34.517131", "seconds": 34.517131}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 276, "message": "redirect_url2: https://t.livepocket.jp/e/l3im7", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-5 (process_account)"}, "time": {"repr": "2024-06-29 20:32:18.569850+08:00", "timestamp": 1719664338.56985}}}
+{"text": "2024-06-29 20:32:19 WARNING From app.get_ticket : redirect_url3 is None\n", "record": {"elapsed": {"repr": "0:00:35.378281", "seconds": 35.378281}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u26a0\ufe0f", "name": "WARNING", "no": 30}, "line": 289, "message": "redirect_url3 is None", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-5 (process_account)"}, "time": {"repr": "2024-06-29 20:32:19.431000+08:00", "timestamp": 1719664339.431}}}
+{"text": "2024-06-29 20:32:19 INFO From app.get_ticket : target_url: https://t.livepocket.jp/e/l3im7, account: 4l965@huatcn.com, passwd: panyue666\n", "record": {"elapsed": {"repr": "0:00:35.379111", "seconds": 35.379111}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 118, "message": "target_url: https://t.livepocket.jp/e/l3im7, account: 4l965@huatcn.com, passwd: panyue666", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-6 (process_account)"}, "time": {"repr": "2024-06-29 20:32:19.431830+08:00", "timestamp": 1719664339.43183}}}
+{"text": "2024-06-29 20:32:19 INFO From app.get_ticket : proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20582'}\n", "record": {"elapsed": {"repr": "0:00:35.379354", "seconds": 35.379354}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 126, "message": "proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20582'}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-6 (process_account)"}, "time": {"repr": "2024-06-29 20:32:19.432073+08:00", "timestamp": 1719664339.432073}}}
+{"text": "2024-06-29 20:32:20 INFO From app.get_ticket : login account:4l965@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20582, token: XQ67IFDnZiTAwuaF5xWF8jKppUrTcbmgnVtp3TMb login success!!!\n", "record": {"elapsed": {"repr": "0:00:36.057647", "seconds": 36.057647}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 180, "message": "login account:4l965@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20582, token: XQ67IFDnZiTAwuaF5xWF8jKppUrTcbmgnVtp3TMb login success!!!", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-6 (process_account)"}, "time": {"repr": "2024-06-29 20:32:20.110366+08:00", "timestamp": 1719664340.110366}}}
+{"text": "2024-06-29 20:32:20 INFO From app.get_ticket : form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}\n", "record": {"elapsed": {"repr": "0:00:36.059625", "seconds": 36.059625}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 259, "message": "form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-6 (process_account)"}, "time": {"repr": "2024-06-29 20:32:20.112344+08:00", "timestamp": 1719664340.112344}}}
+{"text": "2024-06-29 20:32:20 INFO From app.get_ticket : response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:20 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 cc501e4a49d8fd154d541f168f11e94a.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'rjqBCcz3CnJ-xniNSoRKpCtedZt-XI0v2M8lg1WMnMwdnwsmCdAXjQ=='}\n", "record": {"elapsed": {"repr": "0:00:36.685021", "seconds": 36.685021}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 262, "message": "response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:20 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 cc501e4a49d8fd154d541f168f11e94a.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'rjqBCcz3CnJ-xniNSoRKpCtedZt-XI0v2M8lg1WMnMwdnwsmCdAXjQ=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-6 (process_account)"}, "time": {"repr": "2024-06-29 20:32:20.737740+08:00", "timestamp": 1719664340.73774}}}
+{"text": "2024-06-29 20:32:20 INFO From app.get_ticket : redirect_url1: https://t.livepocket.jp/event?id=322491\n", "record": {"elapsed": {"repr": "0:00:36.685525", "seconds": 36.685525}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 265, "message": "redirect_url1: https://t.livepocket.jp/event?id=322491", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-6 (process_account)"}, "time": {"repr": "2024-06-29 20:32:20.738244+08:00", "timestamp": 1719664340.738244}}}
+{"text": "2024-06-29 20:32:21 INFO From app.get_ticket : response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:21 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 cc501e4a49d8fd154d541f168f11e94a.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'Ic41pf6rV-tdhlpKqf8rtKw3LvtuBpoikbmEP2CI562znCVsiLDdmQ=='}\n", "record": {"elapsed": {"repr": "0:00:37.018403", "seconds": 37.018403}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 273, "message": "response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:21 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 cc501e4a49d8fd154d541f168f11e94a.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'Ic41pf6rV-tdhlpKqf8rtKw3LvtuBpoikbmEP2CI562znCVsiLDdmQ=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-6 (process_account)"}, "time": {"repr": "2024-06-29 20:32:21.071122+08:00", "timestamp": 1719664341.071122}}}
+{"text": "2024-06-29 20:32:21 INFO From app.get_ticket : redirect_url2: https://t.livepocket.jp/e/l3im7\n", "record": {"elapsed": {"repr": "0:00:37.018875", "seconds": 37.018875}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 276, "message": "redirect_url2: https://t.livepocket.jp/e/l3im7", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-6 (process_account)"}, "time": {"repr": "2024-06-29 20:32:21.071594+08:00", "timestamp": 1719664341.071594}}}
+{"text": "2024-06-29 20:32:22 WARNING From app.get_ticket : redirect_url3 is None\n", "record": {"elapsed": {"repr": "0:00:38.209256", "seconds": 38.209256}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u26a0\ufe0f", "name": "WARNING", "no": 30}, "line": 289, "message": "redirect_url3 is None", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-6 (process_account)"}, "time": {"repr": "2024-06-29 20:32:22.261975+08:00", "timestamp": 1719664342.261975}}}
+{"text": "2024-06-29 20:32:22 INFO From app.get_ticket : target_url: https://t.livepocket.jp/e/l3im7, account: 68r90@huatcn.com, passwd: panyue666\n", "record": {"elapsed": {"repr": "0:00:38.210582", "seconds": 38.210582}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 118, "message": "target_url: https://t.livepocket.jp/e/l3im7, account: 68r90@huatcn.com, passwd: panyue666", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-7 (process_account)"}, "time": {"repr": "2024-06-29 20:32:22.263301+08:00", "timestamp": 1719664342.263301}}}
+{"text": "2024-06-29 20:32:22 INFO From app.get_ticket : proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20008'}\n", "record": {"elapsed": {"repr": "0:00:38.210842", "seconds": 38.210842}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 126, "message": "proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20008'}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-7 (process_account)"}, "time": {"repr": "2024-06-29 20:32:22.263561+08:00", "timestamp": 1719664342.263561}}}
+{"text": "2024-06-29 20:32:23 INFO From app.get_ticket : login account:68r90@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20008, token: n8DHezfaKtqGj8236CF89LkjhwIGZKiwNjK2zXlB login success!!!\n", "record": {"elapsed": {"repr": "0:00:39.099015", "seconds": 39.099015}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 180, "message": "login account:68r90@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20008, token: n8DHezfaKtqGj8236CF89LkjhwIGZKiwNjK2zXlB login success!!!", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-7 (process_account)"}, "time": {"repr": "2024-06-29 20:32:23.151734+08:00", "timestamp": 1719664343.151734}}}
+{"text": "2024-06-29 20:32:23 INFO From app.get_ticket : form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}\n", "record": {"elapsed": {"repr": "0:00:39.100933", "seconds": 39.100933}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 259, "message": "form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-7 (process_account)"}, "time": {"repr": "2024-06-29 20:32:23.153652+08:00", "timestamp": 1719664343.153652}}}
+{"text": "2024-06-29 20:32:23 INFO From app.get_ticket : response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:23 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 567feb5e93d578fc203f0479abc5151c.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'Zw2z39H8WDN8tySIkQBo5RHWPrXXgyPgHOYajaZ4VsXVGm7jTTvEzg=='}\n", "record": {"elapsed": {"repr": "0:00:39.744910", "seconds": 39.74491}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 262, "message": "response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:23 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 567feb5e93d578fc203f0479abc5151c.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'Zw2z39H8WDN8tySIkQBo5RHWPrXXgyPgHOYajaZ4VsXVGm7jTTvEzg=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-7 (process_account)"}, "time": {"repr": "2024-06-29 20:32:23.797629+08:00", "timestamp": 1719664343.797629}}}
+{"text": "2024-06-29 20:32:23 INFO From app.get_ticket : redirect_url1: https://t.livepocket.jp/event?id=322491\n", "record": {"elapsed": {"repr": "0:00:39.745278", "seconds": 39.745278}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 265, "message": "redirect_url1: https://t.livepocket.jp/event?id=322491", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-7 (process_account)"}, "time": {"repr": "2024-06-29 20:32:23.797997+08:00", "timestamp": 1719664343.797997}}}
+{"text": "2024-06-29 20:32:24 INFO From app.get_ticket : response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:24 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 567feb5e93d578fc203f0479abc5151c.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': '2t-VbnA3G3mSLW4ekrnqAayiOOJc7qQIRemEfrGYPkmbuKFfwtVSOA=='}\n", "record": {"elapsed": {"repr": "0:00:40.015116", "seconds": 40.015116}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 273, "message": "response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:24 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 567feb5e93d578fc203f0479abc5151c.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': '2t-VbnA3G3mSLW4ekrnqAayiOOJc7qQIRemEfrGYPkmbuKFfwtVSOA=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-7 (process_account)"}, "time": {"repr": "2024-06-29 20:32:24.067835+08:00", "timestamp": 1719664344.067835}}}
+{"text": "2024-06-29 20:32:24 INFO From app.get_ticket : redirect_url2: https://t.livepocket.jp/e/l3im7\n", "record": {"elapsed": {"repr": "0:00:40.015419", "seconds": 40.015419}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 276, "message": "redirect_url2: https://t.livepocket.jp/e/l3im7", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-7 (process_account)"}, "time": {"repr": "2024-06-29 20:32:24.068138+08:00", "timestamp": 1719664344.068138}}}
+{"text": "2024-06-29 20:32:25 WARNING From app.get_ticket : redirect_url3 is None\n", "record": {"elapsed": {"repr": "0:00:40.994045", "seconds": 40.994045}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u26a0\ufe0f", "name": "WARNING", "no": 30}, "line": 289, "message": "redirect_url3 is None", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-7 (process_account)"}, "time": {"repr": "2024-06-29 20:32:25.046764+08:00", "timestamp": 1719664345.046764}}}
+{"text": "2024-06-29 20:32:25 INFO From app.get_ticket : target_url: https://t.livepocket.jp/e/l3im7, account: 7441188@huatcn.com, passwd: panyue666\n", "record": {"elapsed": {"repr": "0:00:40.995136", "seconds": 40.995136}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 118, "message": "target_url: https://t.livepocket.jp/e/l3im7, account: 7441188@huatcn.com, passwd: panyue666", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-8 (process_account)"}, "time": {"repr": "2024-06-29 20:32:25.047855+08:00", "timestamp": 1719664345.047855}}}
+{"text": "2024-06-29 20:32:25 INFO From app.get_ticket : proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20305'}\n", "record": {"elapsed": {"repr": "0:00:40.995469", "seconds": 40.995469}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 126, "message": "proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20305'}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-8 (process_account)"}, "time": {"repr": "2024-06-29 20:32:25.048188+08:00", "timestamp": 1719664345.048188}}}
+{"text": "2024-06-29 20:32:25 INFO From app.get_ticket : login account:7441188@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20305, token: cVHOu5l8xAnJ0Dm08e27OVauDpiABEul5E0QBNqF login success!!!\n", "record": {"elapsed": {"repr": "0:00:41.700918", "seconds": 41.700918}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 180, "message": "login account:7441188@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20305, token: cVHOu5l8xAnJ0Dm08e27OVauDpiABEul5E0QBNqF login success!!!", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-8 (process_account)"}, "time": {"repr": "2024-06-29 20:32:25.753637+08:00", "timestamp": 1719664345.753637}}}
+{"text": "2024-06-29 20:32:25 INFO From app.get_ticket : form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}\n", "record": {"elapsed": {"repr": "0:00:41.703112", "seconds": 41.703112}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 259, "message": "form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-8 (process_account)"}, "time": {"repr": "2024-06-29 20:32:25.755831+08:00", "timestamp": 1719664345.755831}}}
+{"text": "2024-06-29 20:32:26 INFO From app.get_ticket : response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:26 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 5e691cfa2d6a5d86455e38cf854d7efa.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'pESzrjDCV80_XS5Q9UMiQt5EsYk_e0i-9FTLdZXp7aEavXa0y2WRyA=='}\n", "record": {"elapsed": {"repr": "0:00:42.449708", "seconds": 42.449708}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 262, "message": "response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:26 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 5e691cfa2d6a5d86455e38cf854d7efa.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'pESzrjDCV80_XS5Q9UMiQt5EsYk_e0i-9FTLdZXp7aEavXa0y2WRyA=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-8 (process_account)"}, "time": {"repr": "2024-06-29 20:32:26.502427+08:00", "timestamp": 1719664346.502427}}}
+{"text": "2024-06-29 20:32:26 INFO From app.get_ticket : redirect_url1: https://t.livepocket.jp/event?id=322491\n", "record": {"elapsed": {"repr": "0:00:42.450093", "seconds": 42.450093}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 265, "message": "redirect_url1: https://t.livepocket.jp/event?id=322491", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-8 (process_account)"}, "time": {"repr": "2024-06-29 20:32:26.502812+08:00", "timestamp": 1719664346.502812}}}
+{"text": "2024-06-29 20:32:26 INFO From app.get_ticket : response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:26 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 5e691cfa2d6a5d86455e38cf854d7efa.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'zYloplg6omUAF17Y5t2SuhWMRGuhYMAEQ9Zs2SBr7j4y_NDtwGU_kA=='}\n", "record": {"elapsed": {"repr": "0:00:42.875539", "seconds": 42.875539}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 273, "message": "response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:26 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 5e691cfa2d6a5d86455e38cf854d7efa.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'zYloplg6omUAF17Y5t2SuhWMRGuhYMAEQ9Zs2SBr7j4y_NDtwGU_kA=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-8 (process_account)"}, "time": {"repr": "2024-06-29 20:32:26.928258+08:00", "timestamp": 1719664346.928258}}}
+{"text": "2024-06-29 20:32:26 INFO From app.get_ticket : redirect_url2: https://t.livepocket.jp/e/l3im7\n", "record": {"elapsed": {"repr": "0:00:42.875908", "seconds": 42.875908}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 276, "message": "redirect_url2: https://t.livepocket.jp/e/l3im7", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-8 (process_account)"}, "time": {"repr": "2024-06-29 20:32:26.928627+08:00", "timestamp": 1719664346.928627}}}
+{"text": "2024-06-29 20:32:28 WARNING From app.get_ticket : redirect_url3 is None\n", "record": {"elapsed": {"repr": "0:00:43.956060", "seconds": 43.95606}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u26a0\ufe0f", "name": "WARNING", "no": 30}, "line": 289, "message": "redirect_url3 is None", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-8 (process_account)"}, "time": {"repr": "2024-06-29 20:32:28.008779+08:00", "timestamp": 1719664348.008779}}}
+{"text": "2024-06-29 20:32:28 INFO From app.get_ticket : target_url: https://t.livepocket.jp/e/l3im7, account: 7k6o2@huatcn.com, passwd: panyue666\n", "record": {"elapsed": {"repr": "0:00:43.957014", "seconds": 43.957014}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 118, "message": "target_url: https://t.livepocket.jp/e/l3im7, account: 7k6o2@huatcn.com, passwd: panyue666", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-9 (process_account)"}, "time": {"repr": "2024-06-29 20:32:28.009733+08:00", "timestamp": 1719664348.009733}}}
+{"text": "2024-06-29 20:32:28 INFO From app.get_ticket : proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20496'}\n", "record": {"elapsed": {"repr": "0:00:43.957286", "seconds": 43.957286}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 126, "message": "proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20496'}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-9 (process_account)"}, "time": {"repr": "2024-06-29 20:32:28.010005+08:00", "timestamp": 1719664348.010005}}}
+{"text": "2024-06-29 20:32:28 INFO From app.get_ticket : login account:7k6o2@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20496, token: H8k3laqE51hXzhhaCWHqaDagUCHJM7ON7tR9QCO8 login success!!!\n", "record": {"elapsed": {"repr": "0:00:44.701352", "seconds": 44.701352}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 180, "message": "login account:7k6o2@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20496, token: H8k3laqE51hXzhhaCWHqaDagUCHJM7ON7tR9QCO8 login success!!!", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-9 (process_account)"}, "time": {"repr": "2024-06-29 20:32:28.754071+08:00", "timestamp": 1719664348.754071}}}
+{"text": "2024-06-29 20:32:28 INFO From app.get_ticket : form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}\n", "record": {"elapsed": {"repr": "0:00:44.703518", "seconds": 44.703518}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 259, "message": "form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-9 (process_account)"}, "time": {"repr": "2024-06-29 20:32:28.756237+08:00", "timestamp": 1719664348.756237}}}
+{"text": "2024-06-29 20:32:29 INFO From app.get_ticket : response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:29 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 bd9462bc886ff7405ac0a95255462834.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': '1tuW3LoQTd7ZZWyjYjbXMJYZozkfnUloG62E3_-ooCrTiRYE55YFvQ=='}\n", "record": {"elapsed": {"repr": "0:00:45.519289", "seconds": 45.519289}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 262, "message": "response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:29 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 bd9462bc886ff7405ac0a95255462834.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': '1tuW3LoQTd7ZZWyjYjbXMJYZozkfnUloG62E3_-ooCrTiRYE55YFvQ=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-9 (process_account)"}, "time": {"repr": "2024-06-29 20:32:29.572008+08:00", "timestamp": 1719664349.572008}}}
+{"text": "2024-06-29 20:32:29 INFO From app.get_ticket : redirect_url1: https://t.livepocket.jp/event?id=322491\n", "record": {"elapsed": {"repr": "0:00:45.519581", "seconds": 45.519581}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 265, "message": "redirect_url1: https://t.livepocket.jp/event?id=322491", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-9 (process_account)"}, "time": {"repr": "2024-06-29 20:32:29.572300+08:00", "timestamp": 1719664349.5723}}}
+{"text": "2024-06-29 20:32:29 INFO From app.get_ticket : response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:30 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 bd9462bc886ff7405ac0a95255462834.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'TIq35tFAgAHnNuQ9SMYOhexiYTsWwmku3RU7KHw2OHz1qRoj47CymA=='}\n", "record": {"elapsed": {"repr": "0:00:45.930553", "seconds": 45.930553}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 273, "message": "response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:30 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 bd9462bc886ff7405ac0a95255462834.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'TIq35tFAgAHnNuQ9SMYOhexiYTsWwmku3RU7KHw2OHz1qRoj47CymA=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-9 (process_account)"}, "time": {"repr": "2024-06-29 20:32:29.983272+08:00", "timestamp": 1719664349.983272}}}
+{"text": "2024-06-29 20:32:29 INFO From app.get_ticket : redirect_url2: https://t.livepocket.jp/e/l3im7\n", "record": {"elapsed": {"repr": "0:00:45.930849", "seconds": 45.930849}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 276, "message": "redirect_url2: https://t.livepocket.jp/e/l3im7", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-9 (process_account)"}, "time": {"repr": "2024-06-29 20:32:29.983568+08:00", "timestamp": 1719664349.983568}}}
+{"text": "2024-06-29 20:32:31 WARNING From app.get_ticket : redirect_url3 is None\n", "record": {"elapsed": {"repr": "0:00:46.972169", "seconds": 46.972169}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u26a0\ufe0f", "name": "WARNING", "no": 30}, "line": 289, "message": "redirect_url3 is None", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-9 (process_account)"}, "time": {"repr": "2024-06-29 20:32:31.024888+08:00", "timestamp": 1719664351.024888}}}
+{"text": "2024-06-29 20:32:31 INFO From app.get_ticket : target_url: https://t.livepocket.jp/e/l3im7, account: b73cd@huatcn.com, passwd: panyue666\n", "record": {"elapsed": {"repr": "0:00:46.973062", "seconds": 46.973062}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 118, "message": "target_url: https://t.livepocket.jp/e/l3im7, account: b73cd@huatcn.com, passwd: panyue666", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-10 (process_account)"}, "time": {"repr": "2024-06-29 20:32:31.025781+08:00", "timestamp": 1719664351.025781}}}
+{"text": "2024-06-29 20:32:31 INFO From app.get_ticket : proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20535'}\n", "record": {"elapsed": {"repr": "0:00:46.973314", "seconds": 46.973314}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 126, "message": "proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20535'}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-10 (process_account)"}, "time": {"repr": "2024-06-29 20:32:31.026033+08:00", "timestamp": 1719664351.026033}}}
+{"text": "2024-06-29 20:32:31 INFO From app.get_ticket : login account:b73cd@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20535, token: NvNN9dwvcxGRpgn5o8vup9RIbZigsQwCyzaoiURV login success!!!\n", "record": {"elapsed": {"repr": "0:00:47.518844", "seconds": 47.518844}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 180, "message": "login account:b73cd@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20535, token: NvNN9dwvcxGRpgn5o8vup9RIbZigsQwCyzaoiURV login success!!!", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-10 (process_account)"}, "time": {"repr": "2024-06-29 20:32:31.571563+08:00", "timestamp": 1719664351.571563}}}
+{"text": "2024-06-29 20:32:31 INFO From app.get_ticket : form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}\n", "record": {"elapsed": {"repr": "0:00:47.520740", "seconds": 47.52074}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 259, "message": "form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-10 (process_account)"}, "time": {"repr": "2024-06-29 20:32:31.573459+08:00", "timestamp": 1719664351.573459}}}
+{"text": "2024-06-29 20:32:32 INFO From app.get_ticket : response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:32 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 567feb5e93d578fc203f0479abc5151c.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'XH7I1dJuJxbYp1hpxNc3N5ANLII9Zv7APIrn_NuJ7JOBqQxF-6yD6A=='}\n", "record": {"elapsed": {"repr": "0:00:48.309431", "seconds": 48.309431}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 262, "message": "response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:32 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 567feb5e93d578fc203f0479abc5151c.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'XH7I1dJuJxbYp1hpxNc3N5ANLII9Zv7APIrn_NuJ7JOBqQxF-6yD6A=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-10 (process_account)"}, "time": {"repr": "2024-06-29 20:32:32.362150+08:00", "timestamp": 1719664352.36215}}}
+{"text": "2024-06-29 20:32:32 INFO From app.get_ticket : redirect_url1: https://t.livepocket.jp/event?id=322491\n", "record": {"elapsed": {"repr": "0:00:48.309829", "seconds": 48.309829}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 265, "message": "redirect_url1: https://t.livepocket.jp/event?id=322491", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-10 (process_account)"}, "time": {"repr": "2024-06-29 20:32:32.362548+08:00", "timestamp": 1719664352.362548}}}
+{"text": "2024-06-29 20:32:32 INFO From app.get_ticket : response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:32 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 567feb5e93d578fc203f0479abc5151c.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'tsNVfGh3L4tvqPgvGx3zE7w2jaVTrGsmd4XNY76Wt_q78Z8bKwhThw=='}\n", "record": {"elapsed": {"repr": "0:00:48.885780", "seconds": 48.88578}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 273, "message": "response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:32 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 567feb5e93d578fc203f0479abc5151c.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'tsNVfGh3L4tvqPgvGx3zE7w2jaVTrGsmd4XNY76Wt_q78Z8bKwhThw=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-10 (process_account)"}, "time": {"repr": "2024-06-29 20:32:32.938499+08:00", "timestamp": 1719664352.938499}}}
+{"text": "2024-06-29 20:32:32 INFO From app.get_ticket : redirect_url2: https://t.livepocket.jp/e/l3im7\n", "record": {"elapsed": {"repr": "0:00:48.886148", "seconds": 48.886148}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 276, "message": "redirect_url2: https://t.livepocket.jp/e/l3im7", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-10 (process_account)"}, "time": {"repr": "2024-06-29 20:32:32.938867+08:00", "timestamp": 1719664352.938867}}}
+{"text": "2024-06-29 20:32:34 WARNING From app.get_ticket : redirect_url3 is None\n", "record": {"elapsed": {"repr": "0:00:49.952419", "seconds": 49.952419}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u26a0\ufe0f", "name": "WARNING", "no": 30}, "line": 289, "message": "redirect_url3 is None", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-10 (process_account)"}, "time": {"repr": "2024-06-29 20:32:34.005138+08:00", "timestamp": 1719664354.005138}}}
+{"text": "2024-06-29 20:32:34 INFO From app.get_ticket : target_url: https://t.livepocket.jp/e/l3im7, account: aokimomo@huatcn.com, passwd: panyue666\n", "record": {"elapsed": {"repr": "0:00:49.953293", "seconds": 49.953293}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 118, "message": "target_url: https://t.livepocket.jp/e/l3im7, account: aokimomo@huatcn.com, passwd: panyue666", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-11 (process_account)"}, "time": {"repr": "2024-06-29 20:32:34.006012+08:00", "timestamp": 1719664354.006012}}}
+{"text": "2024-06-29 20:32:34 INFO From app.get_ticket : proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20211'}\n", "record": {"elapsed": {"repr": "0:00:49.953546", "seconds": 49.953546}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 126, "message": "proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20211'}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-11 (process_account)"}, "time": {"repr": "2024-06-29 20:32:34.006265+08:00", "timestamp": 1719664354.006265}}}
+{"text": "2024-06-29 20:32:34 INFO From app.get_ticket : login account:aokimomo@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20211, token: W4Ona35z8AZuCDTVuIoYyUNLGJ89cyazrBQ55aYp login success!!!\n", "record": {"elapsed": {"repr": "0:00:50.617563", "seconds": 50.617563}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 180, "message": "login account:aokimomo@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20211, token: W4Ona35z8AZuCDTVuIoYyUNLGJ89cyazrBQ55aYp login success!!!", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-11 (process_account)"}, "time": {"repr": "2024-06-29 20:32:34.670282+08:00", "timestamp": 1719664354.670282}}}
+{"text": "2024-06-29 20:32:34 INFO From app.get_ticket : form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}\n", "record": {"elapsed": {"repr": "0:00:50.619635", "seconds": 50.619635}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 259, "message": "form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-11 (process_account)"}, "time": {"repr": "2024-06-29 20:32:34.672354+08:00", "timestamp": 1719664354.672354}}}
+{"text": "2024-06-29 20:32:35 INFO From app.get_ticket : response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:35 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 206090c043abba27b018a5b67fa8c9ae.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': '7tsxOlJ5ptJPymMbVJLuF4yfAr5oG4gYdHsPD5ZxGfcph7JXGg6JeQ=='}\n", "record": {"elapsed": {"repr": "0:00:51.223746", "seconds": 51.223746}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 262, "message": "response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:35 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 206090c043abba27b018a5b67fa8c9ae.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': '7tsxOlJ5ptJPymMbVJLuF4yfAr5oG4gYdHsPD5ZxGfcph7JXGg6JeQ=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-11 (process_account)"}, "time": {"repr": "2024-06-29 20:32:35.276465+08:00", "timestamp": 1719664355.276465}}}
+{"text": "2024-06-29 20:32:35 INFO From app.get_ticket : redirect_url1: https://t.livepocket.jp/event?id=322491\n", "record": {"elapsed": {"repr": "0:00:51.224115", "seconds": 51.224115}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 265, "message": "redirect_url1: https://t.livepocket.jp/event?id=322491", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-11 (process_account)"}, "time": {"repr": "2024-06-29 20:32:35.276834+08:00", "timestamp": 1719664355.276834}}}
+{"text": "2024-06-29 20:32:35 INFO From app.get_ticket : response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:35 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 206090c043abba27b018a5b67fa8c9ae.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'e_KzNDfNxlOs5GabvQjZNuh6BHJbveDwMTvWut9nfdm-DnMc8iI4sw=='}\n", "record": {"elapsed": {"repr": "0:00:51.713815", "seconds": 51.713815}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 273, "message": "response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:35 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 206090c043abba27b018a5b67fa8c9ae.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'e_KzNDfNxlOs5GabvQjZNuh6BHJbveDwMTvWut9nfdm-DnMc8iI4sw=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-11 (process_account)"}, "time": {"repr": "2024-06-29 20:32:35.766534+08:00", "timestamp": 1719664355.766534}}}
+{"text": "2024-06-29 20:32:35 INFO From app.get_ticket : redirect_url2: https://t.livepocket.jp/e/l3im7\n", "record": {"elapsed": {"repr": "0:00:51.714181", "seconds": 51.714181}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 276, "message": "redirect_url2: https://t.livepocket.jp/e/l3im7", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-11 (process_account)"}, "time": {"repr": "2024-06-29 20:32:35.766900+08:00", "timestamp": 1719664355.7669}}}
+{"text": "2024-06-29 20:32:36 WARNING From app.get_ticket : redirect_url3 is None\n", "record": {"elapsed": {"repr": "0:00:52.809418", "seconds": 52.809418}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u26a0\ufe0f", "name": "WARNING", "no": 30}, "line": 289, "message": "redirect_url3 is None", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-11 (process_account)"}, "time": {"repr": "2024-06-29 20:32:36.862137+08:00", "timestamp": 1719664356.862137}}}
+{"text": "2024-06-29 20:32:36 INFO From app.get_ticket : target_url: https://t.livepocket.jp/e/l3im7, account: wi719@huatcn.com, passwd: panyue666\n", "record": {"elapsed": {"repr": "0:00:52.810512", "seconds": 52.810512}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 118, "message": "target_url: https://t.livepocket.jp/e/l3im7, account: wi719@huatcn.com, passwd: panyue666", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-12 (process_account)"}, "time": {"repr": "2024-06-29 20:32:36.863231+08:00", "timestamp": 1719664356.863231}}}
+{"text": "2024-06-29 20:32:36 INFO From app.get_ticket : proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20091'}\n", "record": {"elapsed": {"repr": "0:00:52.810861", "seconds": 52.810861}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 126, "message": "proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20091'}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-12 (process_account)"}, "time": {"repr": "2024-06-29 20:32:36.863580+08:00", "timestamp": 1719664356.86358}}}
+{"text": "2024-06-29 20:32:37 INFO From app.get_ticket : login account:wi719@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20091, token: jAj8WCX7tA5I6C2OT0XPzMh6C9FbaEObvXsQ7Gwe login success!!!\n", "record": {"elapsed": {"repr": "0:00:53.426717", "seconds": 53.426717}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 180, "message": "login account:wi719@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20091, token: jAj8WCX7tA5I6C2OT0XPzMh6C9FbaEObvXsQ7Gwe login success!!!", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-12 (process_account)"}, "time": {"repr": "2024-06-29 20:32:37.479436+08:00", "timestamp": 1719664357.479436}}}
+{"text": "2024-06-29 20:32:37 INFO From app.get_ticket : form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}\n", "record": {"elapsed": {"repr": "0:00:53.428765", "seconds": 53.428765}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 259, "message": "form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-12 (process_account)"}, "time": {"repr": "2024-06-29 20:32:37.481484+08:00", "timestamp": 1719664357.481484}}}
+{"text": "2024-06-29 20:32:38 INFO From app.get_ticket : response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:38 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 567feb5e93d578fc203f0479abc5151c.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'abZoPuTEXc5AMJr7gHD-hPh0fF9UJ4DHHjfBjiD4e2fxIXHFpvD1ow=='}\n", "record": {"elapsed": {"repr": "0:00:54.137117", "seconds": 54.137117}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 262, "message": "response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:38 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 567feb5e93d578fc203f0479abc5151c.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'abZoPuTEXc5AMJr7gHD-hPh0fF9UJ4DHHjfBjiD4e2fxIXHFpvD1ow=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-12 (process_account)"}, "time": {"repr": "2024-06-29 20:32:38.189836+08:00", "timestamp": 1719664358.189836}}}
+{"text": "2024-06-29 20:32:38 INFO From app.get_ticket : redirect_url1: https://t.livepocket.jp/event?id=322491\n", "record": {"elapsed": {"repr": "0:00:54.137533", "seconds": 54.137533}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 265, "message": "redirect_url1: https://t.livepocket.jp/event?id=322491", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-12 (process_account)"}, "time": {"repr": "2024-06-29 20:32:38.190252+08:00", "timestamp": 1719664358.190252}}}
+{"text": "2024-06-29 20:32:38 INFO From app.get_ticket : response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:38 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 567feb5e93d578fc203f0479abc5151c.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'xwoaehbMnehtaOD_ExcbRS97pCH8YNQDEtJDuXv399CnwTYQDP6-IQ=='}\n", "record": {"elapsed": {"repr": "0:00:54.488986", "seconds": 54.488986}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 273, "message": "response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:38 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 567feb5e93d578fc203f0479abc5151c.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'xwoaehbMnehtaOD_ExcbRS97pCH8YNQDEtJDuXv399CnwTYQDP6-IQ=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-12 (process_account)"}, "time": {"repr": "2024-06-29 20:32:38.541705+08:00", "timestamp": 1719664358.541705}}}
+{"text": "2024-06-29 20:32:38 INFO From app.get_ticket : redirect_url2: https://t.livepocket.jp/e/l3im7\n", "record": {"elapsed": {"repr": "0:00:54.489289", "seconds": 54.489289}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 276, "message": "redirect_url2: https://t.livepocket.jp/e/l3im7", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-12 (process_account)"}, "time": {"repr": "2024-06-29 20:32:38.542008+08:00", "timestamp": 1719664358.542008}}}
+{"text": "2024-06-29 20:32:39 WARNING From app.get_ticket : redirect_url3 is None\n", "record": {"elapsed": {"repr": "0:00:55.571137", "seconds": 55.571137}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u26a0\ufe0f", "name": "WARNING", "no": 30}, "line": 289, "message": "redirect_url3 is None", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-12 (process_account)"}, "time": {"repr": "2024-06-29 20:32:39.623856+08:00", "timestamp": 1719664359.623856}}}
+{"text": "2024-06-29 20:32:39 INFO From app.get_ticket : target_url: https://t.livepocket.jp/e/l3im7, account: wang@huatcn.com, passwd: panyue666\n", "record": {"elapsed": {"repr": "0:00:55.571959", "seconds": 55.571959}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 118, "message": "target_url: https://t.livepocket.jp/e/l3im7, account: wang@huatcn.com, passwd: panyue666", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-13 (process_account)"}, "time": {"repr": "2024-06-29 20:32:39.624678+08:00", "timestamp": 1719664359.624678}}}
+{"text": "2024-06-29 20:32:39 INFO From app.get_ticket : proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20317'}\n", "record": {"elapsed": {"repr": "0:00:55.572185", "seconds": 55.572185}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 126, "message": "proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20317'}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-13 (process_account)"}, "time": {"repr": "2024-06-29 20:32:39.624904+08:00", "timestamp": 1719664359.624904}}}
+{"text": "2024-06-29 20:32:40 INFO From app.get_ticket : login account:wang@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20317, token: MAC8QFcR2DVaB9Af9bpa9Z9kTuVKB3IZm30eU4Zp login success!!!\n", "record": {"elapsed": {"repr": "0:00:56.169343", "seconds": 56.169343}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 180, "message": "login account:wang@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20317, token: MAC8QFcR2DVaB9Af9bpa9Z9kTuVKB3IZm30eU4Zp login success!!!", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-13 (process_account)"}, "time": {"repr": "2024-06-29 20:32:40.222062+08:00", "timestamp": 1719664360.222062}}}
+{"text": "2024-06-29 20:32:40 INFO From app.get_ticket : form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}\n", "record": {"elapsed": {"repr": "0:00:56.171241", "seconds": 56.171241}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 259, "message": "form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-13 (process_account)"}, "time": {"repr": "2024-06-29 20:32:40.223960+08:00", "timestamp": 1719664360.22396}}}
+{"text": "2024-06-29 20:32:40 INFO From app.get_ticket : response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:40 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 9da7733d048d5b4bbc8fae50096d6442.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'SWOuh_ZqbOeI9-gwkkKQtGFpEBjX7KJMnVsxP3iQhIk8V0-dqnObAA=='}\n", "record": {"elapsed": {"repr": "0:00:56.891388", "seconds": 56.891388}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 262, "message": "response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:40 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 9da7733d048d5b4bbc8fae50096d6442.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'SWOuh_ZqbOeI9-gwkkKQtGFpEBjX7KJMnVsxP3iQhIk8V0-dqnObAA=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-13 (process_account)"}, "time": {"repr": "2024-06-29 20:32:40.944107+08:00", "timestamp": 1719664360.944107}}}
+{"text": "2024-06-29 20:32:40 INFO From app.get_ticket : redirect_url1: https://t.livepocket.jp/event?id=322491\n", "record": {"elapsed": {"repr": "0:00:56.891752", "seconds": 56.891752}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 265, "message": "redirect_url1: https://t.livepocket.jp/event?id=322491", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-13 (process_account)"}, "time": {"repr": "2024-06-29 20:32:40.944471+08:00", "timestamp": 1719664360.944471}}}
+{"text": "2024-06-29 20:32:41 INFO From app.get_ticket : response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:41 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 9da7733d048d5b4bbc8fae50096d6442.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'ksc9YvUaEByuIESEjxV0WQDytDsK1KAxSgymzUsrXZe1pF7lC-Em0g=='}\n", "record": {"elapsed": {"repr": "0:00:57.306212", "seconds": 57.306212}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 273, "message": "response2.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Date': 'Sat, 29 Jun 2024 12:32:41 GMT', 'Location': 'https://t.livepocket.jp/e/l3im7', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 9da7733d048d5b4bbc8fae50096d6442.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'ksc9YvUaEByuIESEjxV0WQDytDsK1KAxSgymzUsrXZe1pF7lC-Em0g=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-13 (process_account)"}, "time": {"repr": "2024-06-29 20:32:41.358931+08:00", "timestamp": 1719664361.358931}}}
+{"text": "2024-06-29 20:32:41 INFO From app.get_ticket : redirect_url2: https://t.livepocket.jp/e/l3im7\n", "record": {"elapsed": {"repr": "0:00:57.306582", "seconds": 57.306582}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 276, "message": "redirect_url2: https://t.livepocket.jp/e/l3im7", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-13 (process_account)"}, "time": {"repr": "2024-06-29 20:32:41.359301+08:00", "timestamp": 1719664361.359301}}}
+{"text": "2024-06-29 20:32:42 WARNING From app.get_ticket : redirect_url3 is None\n", "record": {"elapsed": {"repr": "0:00:58.250722", "seconds": 58.250722}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u26a0\ufe0f", "name": "WARNING", "no": 30}, "line": 289, "message": "redirect_url3 is None", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-13 (process_account)"}, "time": {"repr": "2024-06-29 20:32:42.303441+08:00", "timestamp": 1719664362.303441}}}
+{"text": "2024-06-29 20:32:42 INFO From app.get_ticket : target_url: https://t.livepocket.jp/e/l3im7, account: teerwrw@huatcn.com, passwd: panyue666\n", "record": {"elapsed": {"repr": "0:00:58.252160", "seconds": 58.25216}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 118, "message": "target_url: https://t.livepocket.jp/e/l3im7, account: teerwrw@huatcn.com, passwd: panyue666", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-14 (process_account)"}, "time": {"repr": "2024-06-29 20:32:42.304879+08:00", "timestamp": 1719664362.304879}}}
+{"text": "2024-06-29 20:32:42 INFO From app.get_ticket : proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20586'}\n", "record": {"elapsed": {"repr": "0:00:58.252575", "seconds": 58.252575}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 126, "message": "proxies: {'http': 'http://spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20586'}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-14 (process_account)"}, "time": {"repr": "2024-06-29 20:32:42.305294+08:00", "timestamp": 1719664362.305294}}}
+{"text": "2024-06-29 20:32:42 INFO From app.get_ticket : login account:teerwrw@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20586, token: IVQju2QSx8vqerCAFxWKwpLDSN8OHvMXs2FNH4E6 login success!!!\n", "record": {"elapsed": {"repr": "0:00:58.871007", "seconds": 58.871007}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 180, "message": "login account:teerwrw@huatcn.com, \u4ee3\u7406IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20586, token: IVQju2QSx8vqerCAFxWKwpLDSN8OHvMXs2FNH4E6 login success!!!", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-14 (process_account)"}, "time": {"repr": "2024-06-29 20:32:42.923726+08:00", "timestamp": 1719664362.923726}}}
+{"text": "2024-06-29 20:32:42 INFO From app.get_ticket : form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}\n", "record": {"elapsed": {"repr": "0:00:58.872332", "seconds": 58.872332}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 259, "message": "form_data: {'redirect_url': 'https://t.livepocket.jp/purchase/', 'event_id': '322491', 'event_cname': 'l3im7', 'ticket_type': 'lottery', 'facebook_ticket_count': 0, 'twitter_ticket_count': 0, 'plusid_linkage_invalidation_flg': 0, 'ticket_id_1565885': 1}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-14 (process_account)"}, "time": {"repr": "2024-06-29 20:32:42.925051+08:00", "timestamp": 1719664362.925051}}}
+{"text": "2024-06-29 20:32:43 INFO From app.get_ticket : response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:43 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 8de0efb362ee8f60b0c74f15a3910740.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'Rxg8Me4nlgfMk1XQZFqkimI_KgU2slnFdPk9UcXoHg1nuIoJF0rONQ=='}\n", "record": {"elapsed": {"repr": "0:00:59.736431", "seconds": 59.736431}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 262, "message": "response.headers: {'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '0', 'Connection': 'keep-alive', 'Cache-Control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'Date': 'Sat, 29 Jun 2024 12:32:43 GMT', 'Expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'Location': 'https://t.livepocket.jp/event?id=322491', 'Pragma': 'no-cache', 'Server': 'Apache', 'X-Frame-Options': 'SAMEORIGIN', 'x-queueit-connector': 'cloudfront', 'X-Cache': 'Miss from cloudfront', 'Via': '1.1 8de0efb362ee8f60b0c74f15a3910740.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'HKG62-C1', 'X-Amz-Cf-Id': 'Rxg8Me4nlgfMk1XQZFqkimI_KgU2slnFdPk9UcXoHg1nuIoJF0rONQ=='}", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-14 (process_account)"}, "time": {"repr": "2024-06-29 20:32:43.789150+08:00", "timestamp": 1719664363.78915}}}
+{"text": "2024-06-29 20:32:43 INFO From app.get_ticket : redirect_url1: https://t.livepocket.jp/event?id=322491\n", "record": {"elapsed": {"repr": "0:00:59.736801", "seconds": 59.736801}, "exception": null, "extra": {}, "file": {"name": "app.py", "path": "/Volumes/work/project/awesome-python/app.py"}, "function": "get_ticket", "level": {"icon": "\u2139\ufe0f", "name": "INFO", "no": 20}, "line": 265, "message": "redirect_url1: https://t.livepocket.jp/event?id=322491", "module": "app", "name": "app", "process": {"id": 5919, "name": "MainProcess"}, "thread": {"id": 123145564127232, "name": "Thread-14 (process_account)"}, "time": {"repr": "2024-06-29 20:32:43.789520+08:00", "timestamp": 1719664363.78952}}}

+ 32 - 3
main.py

@@ -1,11 +1,14 @@
 import ctypes
 import ctypes
 import sys
 import sys
 import os
 import os
+import time
+from datetime import datetime
+
 from PyQt5.QtCore import Qt, QUrl, QDateTime
 from PyQt5.QtCore import Qt, QUrl, QDateTime
 from PyQt5.QtWidgets import QApplication, QMainWindow, QLabel, QFileDialog, QMessageBox, QDateTimeEdit, QPushButton
 from PyQt5.QtWidgets import QApplication, QMainWindow, QLabel, QFileDialog, QMessageBox, QDateTimeEdit, QPushButton
 from PyQt5.QtGui import QDesktopServices
 from PyQt5.QtGui import QDesktopServices
 
 
-from app import login_account, run_threading_order
+from app import login_account, run_threading_order, run_daily_job, run_manual_job
 from litter_helper import Ui_menu  # 确保这个导入路径是正确的
 from litter_helper import Ui_menu  # 确保这个导入路径是正确的
 from tools.utils import save_all_proxy_ip_v3
 from tools.utils import save_all_proxy_ip_v3
 
 
@@ -58,6 +61,9 @@ class MainWindow(QMainWindow, Ui_menu):
         # 终止执行
         # 终止执行
         self.endPushButton.clicked.connect(self.on_stop_button_click)
         self.endPushButton.clicked.connect(self.on_stop_button_click)
 
 
+        # 定时开始
+        self.startTimePushButton.clicked.connect(self.on_start_time_button_click)
+
         # 编辑账号
         # 编辑账号
         # 获取 QLabel 控件并替换为 ClickableLabel
         # 获取 QLabel 控件并替换为 ClickableLabel
         self.accountsLabel = self.findChild(QLabel, "accountsLabel")
         self.accountsLabel = self.findChild(QLabel, "accountsLabel")
@@ -149,13 +155,36 @@ class MainWindow(QMainWindow, Ui_menu):
         pocket_url = None
         pocket_url = None
         if self.urlLineEdit.text():
         if self.urlLineEdit.text():
             pocket_url = self.urlLineEdit.text()
             pocket_url = self.urlLineEdit.text()
+            save_all_proxy_ip_v3(get_resource_path("proxy_list.txt"))
+            login_account(thread_num, get_resource_path("accounts.txt"), pocket_url)
         else:
         else:
             QMessageBox.warning(self, '警告', '请输入URL')
             QMessageBox.warning(self, '警告', '请输入URL')
             return
             return
 
 
-        save_all_proxy_ip_v3(get_resource_path("proxy_list.txt"))
+    # 定时开始
+    def on_start_time_button_click(self):
+        print(f"定时开始:{time.time()}")
+
+        net_url = None
+        if self.urlLineEdit:
+            net_url = self.urlLineEdit.text()
+
+            start_time = self.startDateTimeEdit.text()
+            print(f"start_time:{start_time}")
+
+            # 使用datetime模块解析时间字符串
+            dt = datetime.strptime(start_time, '%Y-%m-%d %H:%M:%S')
+
+            # 提取出时、分、秒
+            hour = dt.hour
+            minute = dt.minute
+            second = dt.second
 
 
-        login_account(thread_num, get_resource_path("accounts.txt"), pocket_url)
+            print(f"Hour: {hour}, Minute: {minute}, Second: {second}")
+            run_manual_job(hour, minute, net_url)
+        else:
+            QMessageBox.warning(self, '警告', '请输入URL')
+            return
 
 
     # 终止下单
     # 终止下单
     def on_stop_button_click(self):
     def on_stop_button_click(self):

+ 14 - 0
results/2024-06-29.txt

@@ -47,3 +47,17 @@ login account:nylo0@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visit
 login account:0482z@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20024, token: KrgUE7r721ztzw3n7oHz7EUXWWqrdoJEFw6skrqd 登录成功!!!
 login account:0482z@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20024, token: KrgUE7r721ztzw3n7oHz7EUXWWqrdoJEFw6skrqd 登录成功!!!
 login account:zzzzdf@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20013, token: TAJKwY2XRPeizYyjXppyixgpMAXpkoCkp2hI1tmy 登录成功!!!
 login account:zzzzdf@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20013, token: TAJKwY2XRPeizYyjXppyixgpMAXpkoCkp2hI1tmy 登录成功!!!
 login account:nagoziyos38@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20537, token: cQh5ezOTHovrt7nwtnm4K4J17Bp7wlV1mQ7oirT1 登录成功!!!
 login account:nagoziyos38@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20537, token: cQh5ezOTHovrt7nwtnm4K4J17Bp7wlV1mQ7oirT1 登录成功!!!
+login account:piaop@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20306, token: echrlxw8JFgGx6bAMq6ONYHMLBGzCPkXs9LxmWV6 登录成功!!!
+login account:zhnggg@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20498, token: JsTnOvCuM7eejdjI1izo06AbwwI1WvZzg9YqEPUG 登录成功!!!
+login account:576h0@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20544, token: vfgRoY8dHex8EFT86DCbuQzDcRHu3ZMkSLuH5ooz 登录成功!!!
+login account:mq693@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20248, token: Bjd9tybz3fzdFkUa06hb9mdns2lMqZy0BCm3ttX8 登录成功!!!
+login account:26e4b@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20511, token: lCLBUxHa7wx1Wjd6rELUMcvSkiMBdwlzEQhwoi3y 登录成功!!!
+login account:4l965@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20582, token: XQ67IFDnZiTAwuaF5xWF8jKppUrTcbmgnVtp3TMb 登录成功!!!
+login account:68r90@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20008, token: n8DHezfaKtqGj8236CF89LkjhwIGZKiwNjK2zXlB 登录成功!!!
+login account:7441188@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20305, token: cVHOu5l8xAnJ0Dm08e27OVauDpiABEul5E0QBNqF 登录成功!!!
+login account:7k6o2@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20496, token: H8k3laqE51hXzhhaCWHqaDagUCHJM7ON7tR9QCO8 登录成功!!!
+login account:b73cd@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20535, token: NvNN9dwvcxGRpgn5o8vup9RIbZigsQwCyzaoiURV 登录成功!!!
+login account:aokimomo@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20211, token: W4Ona35z8AZuCDTVuIoYyUNLGJ89cyazrBQ55aYp 登录成功!!!
+login account:wi719@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20091, token: jAj8WCX7tA5I6C2OT0XPzMh6C9FbaEObvXsQ7Gwe 登录成功!!!
+login account:wang@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20317, token: MAC8QFcR2DVaB9Af9bpa9Z9kTuVKB3IZm30eU4Zp 登录成功!!!
+login account:teerwrw@huatcn.com, 代理IP:spnelh8q2c:panyue6411802~@gate.dc.visitxiangtan.com:20586, token: IVQju2QSx8vqerCAFxWKwpLDSN8OHvMXs2FNH4E6 登录成功!!!