In [ ]:
2 ^ 2 ^ 1
In [1]:
%pip install schedule
Collecting schedule Obtaining dependency information for schedule from https://files.pythonhosted.org/packages/f0/1a/e5a65c08d708ee4c002f3f938ba69b2282af478755700c40f037eacc92ef/schedule-1.2.1-py2.py3-none-any.whl.metadata Downloading schedule-1.2.1-py2.py3-none-any.whl.metadata (3.3 kB) Downloading schedule-1.2.1-py2.py3-none-any.whl (11 kB) Installing collected packages: schedule Successfully installed schedule-1.2.1 Note: you may need to restart the kernel to use updated packages.
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.urllib3.connection.HTTPSConnection object at 0x00000222C3F6EFD0>, 'Connection to files.pythonhosted.org timed out. (connect timeout=15)')': /packages/f0/1a/e5a65c08d708ee4c002f3f938ba69b2282af478755700c40f037eacc92ef/schedule-1.2.1-py2.py3-none-any.whl.metadata
In [2]:
def calc_(balance):
import datetime
now = datetime.datetime.now()
if (now.hour, now.minute) <= (10, 30):
target = datetime.datetime(now.year, now.month, now.day, 10, 30)
else:
print(now.hour, now.minute)
target = datetime.datetime(now.year, now.month, now.day+1, 10, 30)
(target - now).seconds / 60 / 60
print(now, f"【{balance}】【20*3】可用",int(balance) / 23 / 3 / ((target - now).seconds / 60 / 60), f"台 target:[{target}]")
try:
del query
except:
pass
def query():
import requests
resp = requests.get('https://owapi.http.linkudp.com/package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502', proxies=None).json()
balance = resp['data']["package_balance"]
calc_(balance)
In [12]:
calc_( 12232 )
18 17 2023-11-17 18:17:05.272814 【12232】【20*3】可用 10.932800636376232 台 target:[2023-11-18 10:30:00]
In [3]:
import schedule
import time
def job():
try:
query()
time.sleep(60)
except Exception as e:
print(e)
except:
print("????")
schedule.every(10).minutes.do(job
)
job()
while True:
schedule.run_pending()
17 26 2023-11-29 17:26:22.804383 【11931】【20*3】可用 10.135417824409188 台 target:[2023-11-30 10:30:00] HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) 18 26 2023-11-29 18:26:25.755662 【11252】【20*3】可用 10.154302929484508 台 target:[2023-11-30 10:30:00] 18 27 2023-11-29 18:27:25.874637 【11240】【20*3】可用 10.154011542208256 台 target:[2023-11-30 10:30:00] 18 37 2023-11-29 18:37:25.912794 【11144】【20*3】可用 10.172972792044682 台 target:[2023-11-30 10:30:00] 18 38 2023-11-29 18:38:26.039073 【11126】【20*3】可用 10.167392789339136 台 target:[2023-11-30 10:30:00] 18 48 2023-11-29 18:48:26.043885 【10998】【20*3】可用 10.157164527502061 台 target:[2023-11-30 10:30:00] 18 49 2023-11-29 18:49:26.167504 【10994】【20*3】可用 10.164265589282866 台 target:[2023-11-30 10:30:00] 18 59 2023-11-29 18:59:26.176570 【10888】【20*3】可用 10.174441015481728 台 target:[2023-11-30 10:30:00] 19 0 2023-11-29 19:00:26.297546 【10879】【20*3】可用 10.17696734979291 台 target:[2023-11-30 10:30:00] 19 10 2023-11-29 19:10:26.311447 【10756】【20*3】可用 10.17132671226238 台 target:[2023-11-30 10:30:00] 19 11 2023-11-29 19:11:26.451669 【10736】【20*3】可用 10.163466522141466 台 target:[2023-11-30 10:30:00] 19 21 2023-11-29 19:21:26.426581 【10633】【20*3】可用 10.176750818911165 台 target:[2023-11-30 10:30:00] 19 22 2023-11-29 19:22:26.574524 【10621】【20*3】可用 10.176466502025281 台 target:[2023-11-30 10:30:00] 19 32 2023-11-29 19:32:26.548777 【10526】【20*3】可用 10.197809011487793 台 target:[2023-11-30 10:30:00] 19 33 2023-11-29 19:33:26.725921 【10516】【20*3】可用 10.199484497336408 台 target:[2023-11-30 10:30:00] 19 43 2023-11-29 19:43:26.668080 【10380】【20*3】可用 10.18113694266735 台 target:[2023-11-30 10:30:00] 19 44 2023-11-29 19:44:26.838090 【10365】【20*3】可用 10.17790466745059 台 target:[2023-11-30 10:30:00] 19 54 2023-11-29 19:54:26.784432 【10266】【20*3】可用 10.195827219164103 台 target:[2023-11-30 10:30:00] 19 55 2023-11-29 19:55:26.952468 【10257】【20*3】可用 10.19853688729359 台 target:[2023-11-30 10:30:00] 20 5 2023-11-29 20:05:26.921850 【10132】【20*3】可用 10.190775296522697 台 target:[2023-11-30 10:30:00] 20 6 2023-11-29 20:06:27.117493 【10119】【20*3】可用 10.189682430459285 台 target:[2023-11-30 10:30:00] 20 16 2023-11-29 20:16:28.046825 【10010】【20*3】可用 10.198216585601088 台 target:[2023-11-30 10:30:00] 20 17 2023-11-29 20:17:28.164760 【9995】【20*3】可用 10.194879100497845 台 target:[2023-11-30 10:30:00] 20 27 2023-11-29 20:27:28.172664 【9875】【20*3】可用 10.19203163744234 台 target:[2023-11-30 10:30:00] 20 28 2023-11-29 20:28:28.304052 【9867】【20*3】可用 10.19587649284031 台 target:[2023-11-30 10:30:00] 20 38 2023-11-29 20:38:28.308356 【9756】【20*3】可用 10.202415178131806 台 target:[2023-11-30 10:30:00] 20 39 2023-11-29 20:39:28.433906 【9743】【20*3】可用 10.201088374357504 台 target:[2023-11-30 10:30:00] 20 49 2023-11-29 20:49:31.545700 【9639】【20*3】可用 10.215819205047675 台 target:[2023-11-30 10:30:00] 20 50 2023-11-29 20:50:31.695489 【9630】【20*3】可用 10.218735409386097 台 target:[2023-11-30 10:30:00] 21 0 2023-11-29 21:00:31.686676 【9490】【20*3】可用 10.19458151010148 台 target:[2023-11-30 10:30:00] 21 1 2023-11-29 21:01:31.838920 【9479】【20*3】可用 10.195359976480795 台 target:[2023-11-30 10:30:00] 21 11 2023-11-29 21:11:31.829212 【9379】【20*3】可用 10.214142323511368 台 target:[2023-11-30 10:30:00] 21 12 2023-11-29 21:12:31.974263 【9368】【20*3】可用 10.214956056497748 台 target:[2023-11-30 10:30:00] 21 22 2023-11-29 21:22:31.968613 【9231】【20*3】可用 10.193392128859376 台 target:[2023-11-30 10:30:00] 21 23 2023-11-29 21:23:32.148727 【9222】【20*3】可用 10.196618265347585 台 target:[2023-11-30 10:30:00] 21 33 2023-11-29 21:33:32.120681 【9128】【20*3】可用 10.222668947579145 台 target:[2023-11-30 10:30:00] 21 34 2023-11-29 21:34:32.289690 【9114】【20*3】可用 10.220152674323742 台 target:[2023-11-30 10:30:00] 21 44 2023-11-29 21:44:32.278920 【8994】【20*3】可用 10.217348703661104 台 target:[2023-11-30 10:30:00] 21 45 2023-11-29 21:45:32.442813 【8980】【20*3】可用 10.214789263096229 台 target:[2023-11-30 10:30:00] 21 55 2023-11-29 21:55:32.426950 【8884】【20*3】可用 10.239535279083235 台 target:[2023-11-30 10:30:00] 21 56 2023-11-29 21:56:32.589593 【8873】【20*3】可用 10.240430252721538 台 target:[2023-11-30 10:30:00] 22 6 2023-11-29 22:06:32.575616 【8764】【20*3】可用 10.250682043469487 台 target:[2023-11-30 10:30:00] 22 7 2023-11-29 22:07:32.740833 【8751】【20*3】可用 10.249262869407103 台 target:[2023-11-30 10:30:00] 22 17 2023-11-29 22:17:32.748827 【8639】【20*3】可用 10.256227610135133 台 target:[2023-11-30 10:30:00] 22 18 2023-11-29 22:18:32.896582 【8626】【20*3】可用 10.2547946752579 台 target:[2023-11-30 10:30:00] 22 28 2023-11-29 22:28:32.893471 【8514】【20*3】可用 10.26194228410779 台 target:[2023-11-30 10:30:00] 22 29 2023-11-29 22:29:33.034289 【8502】【20*3】可用 10.261939774572069 台 target:[2023-11-30 10:30:00] 22 39 2023-11-29 22:39:33.682333 【8367】【20*3】可用 10.241146962764102 台 target:[2023-11-30 10:30:00] 22 40 2023-11-29 22:40:33.831479 【8355】【20*3】可用 10.240874018659515 台 target:[2023-11-30 10:30:00] 22 50 2023-11-29 22:50:33.820045 【8252】【20*3】可用 10.259236773454289 台 target:[2023-11-30 10:30:00] 22 51 2023-11-29 22:51:33.964753 【8244】【20*3】可用 10.263965521176795 台 target:[2023-11-30 10:30:00] 23 1 2023-11-29 23:01:34.952289 【8127】【20*3】可用 10.265522123334895 台 target:[2023-11-30 10:30:00] 23 2 2023-11-29 23:02:35.080148 【8117】【20*3】可用 10.26805480006578 台 target:[2023-11-30 10:30:00] 23 12 2023-11-29 23:12:35.067921 【8013】【20*3】可用 10.28613239881388 台 target:[2023-11-30 10:30:00] 23 13 2023-11-29 23:13:35.199206 【7998】【20*3】可用 10.282055896948037 台 target:[2023-11-30 10:30:00] 23 23 2023-11-29 23:23:35.210621 【7883】【20*3】可用 10.286288428414846 台 target:[2023-11-30 10:30:00] 23 24 2023-11-29 23:24:38.636203 【7869】【20*3】可用 10.284224386641878 台 target:[2023-11-30 10:30:00] 23 34 2023-11-29 23:34:38.473444 【7760】【20*3】可用 10.296522601596887 台 target:[2023-11-30 10:30:00] 23 35 2023-11-29 23:35:38.775118 【7748】【20*3】可用 10.296311307935854 台 target:[2023-11-30 10:30:00] 23 45 2023-11-29 23:45:38.620027 【7646】【20*3】可用 10.31845371641796 台 target:[2023-11-30 10:30:00] 23 46 2023-11-29 23:46:38.914332 【7627】【20*3】可用 10.308811553654277 台 target:[2023-11-30 10:30:00] 23 56 2023-11-29 23:56:38.753078 【7518】【20*3】可用 10.321925166729022 台 target:[2023-11-30 10:30:00] 23 57 2023-11-29 23:57:39.052052 【7506】【20*3】可用 10.322018748137792 台 target:[2023-11-30 10:30:00] 2023-11-30 00:07:38.902749 【7398】【20*3】可用 10.336697161180798 台 target:[2023-11-30 10:30:00] 2023-11-30 00:08:39.177226 【7388】【20*3】可用 10.339615599925358 台 target:[2023-11-30 10:30:00] 2023-11-30 00:18:40.044681 【7264】【20*3】可用 10.332650954165219 台 target:[2023-11-30 10:30:00] 2023-11-30 00:19:40.196546 【7255】【20*3】可用 10.336757943429223 台 target:[2023-11-30 10:30:00] 2023-11-30 00:29:43.298194 【7138】【20*3】可用 10.340331833194908 台 target:[2023-11-30 10:30:00] 2023-11-30 00:30:43.442622 【7129】【20*3】可用 10.344527369200037 台 target:[2023-11-30 10:30:00] 2023-11-30 00:40:43.437478 【7024】【20*3】可用 10.365130818457724 台 target:[2023-11-30 10:30:00] 2023-11-30 00:41:43.573203 【7012】【20*3】可用 10.36501241672908 台 target:[2023-11-30 10:30:00] 2023-11-30 00:51:43.584636 【6894】【20*3】可用 10.366813365279546 台 target:[2023-11-30 10:30:00] 2023-11-30 00:52:43.742880 【6883】【20*3】可用 10.368201971309068 台 target:[2023-11-30 10:30:00] 2023-11-30 01:02:43.735409 【6775】【20*3】可用 10.385423106991574 台 target:[2023-11-30 10:30:00] 2023-11-30 01:03:43.877893 【6764】【20*3】可用 10.386871551274046 台 target:[2023-11-30 10:30:00] 2023-11-30 01:13:43.858466 【6653】【20*3】可用 10.400079202968026 台 target:[2023-11-30 10:30:00] 2023-11-30 01:14:44.016785 【6638】【20*3】可用 10.395630640330443 台 target:[2023-11-30 10:30:00] 2023-11-30 01:24:44.000302 【6544】【20*3】可用 10.436377409644559 台 target:[2023-11-30 10:30:00] 2023-11-30 01:25:44.155186 【6532】【20*3】可用 10.436380339917319 台 target:[2023-11-30 10:30:00] 2023-11-30 01:35:44.157994 【6400】【20*3】可用 10.4168785986043 台 target:[2023-11-30 10:30:00] 2023-11-30 01:36:44.290916 【6392】【20*3】可用 10.423367781650667 台 target:[2023-11-30 10:30:00] 2023-11-30 01:46:44.295502 【6277】【20*3】可用 10.431458900267975 台 target:[2023-11-30 10:30:00] 2023-11-30 01:47:44.435498 【6265】【20*3】可用 10.431452536058442 台 target:[2023-11-30 10:30:00] 2023-11-30 01:57:44.440186 【6139】【20*3】可用 10.421202283192226 台 target:[2023-11-30 10:30:00] 2023-11-30 01:58:44.593150 【6132】【20*3】可用 10.429680025512916 台 target:[2023-11-30 10:30:00] 2023-11-30 02:08:44.612051 【6027】【20*3】可用 10.45560013010951 台 target:[2023-11-30 10:30:00] 2023-11-30 02:09:44.749838 【6016】【20*3】可用 10.45738000564935 台 target:[2023-11-30 10:30:00] 2023-11-30 02:19:44.728835 【5901】【20*3】可用 10.466709531516754 台 target:[2023-11-30 10:30:00] 2023-11-30 02:20:44.894979 【5885】【20*3】可用 10.459665415120748 台 target:[2023-11-30 10:30:00] 2023-11-30 02:30:44.880100 【5785】【20*3】可用 10.496473203148033 台 target:[2023-11-30 10:30:00] 2023-11-30 02:31:45.024704 【5776】【20*3】可用 10.502422866771118 台 target:[2023-11-30 10:30:00] 2023-11-30 02:41:45.008788 【5663】【20*3】可用 10.5168672871509 台 target:[2023-11-30 10:30:00] 2023-11-30 02:42:45.168357 【5653】【20*3】可用 10.520765157836292 台 target:[2023-11-30 10:30:00] 2023-11-30 02:52:45.145376 【5534】【20*3】可用 10.524547451432847 台 target:[2023-11-30 10:30:00] 2023-11-30 02:53:45.296322 【5520】【20*3】可用 10.520932271498502 台 target:[2023-11-30 10:30:00] 2023-11-30 03:03:45.287468 【5406】【20*3】可用 10.534554938113224 台 target:[2023-11-30 10:30:00] 2023-11-30 03:04:45.442460 【5396】【20*3】可用 10.538685138227473 台 target:[2023-11-30 10:30:00] 2023-11-30 03:14:45.426199 【5284】【20*3】可用 10.557055852099989 台 target:[2023-11-30 10:30:00] 2023-11-30 03:15:46.310479 【5273】【20*3】可用 10.5597452684244 台 target:[2023-11-30 10:30:00] 2023-11-30 03:25:45.553263 【5148】【20*3】可用 10.552027357107963 台 target:[2023-11-30 10:30:00] 2023-11-30 03:26:46.440752 【5136】【20*3】可用 10.552719938223305 台 target:[2023-11-30 10:30:00] 2023-11-30 03:36:45.713867 【5032】【20*3】可用 10.588817070048504 台 target:[2023-11-30 10:30:00] 2023-11-30 03:37:46.558982 【5018】【20*3】可用 10.585399896986777 台 target:[2023-11-30 10:30:00] 2023-11-30 03:47:45.854270 【4903】【20*3】可用 10.599515026608682 台 target:[2023-11-30 10:30:00] 2023-11-30 03:48:46.701632 【4883】【20*3】可用 10.583027349782094 台 target:[2023-11-30 10:30:00] 2023-11-30 03:58:46.009251 【4785】【20*3】可用 10.635716521665039 台 target:[2023-11-30 10:30:00] 2023-11-30 03:59:46.846671 【4770】【20*3】可用 10.629546201571406 台 target:[2023-11-30 10:30:00] 2023-11-30 04:09:46.153985 【4654】【20*3】可用 10.64381674064559 台 target:[2023-11-30 10:30:00] 2023-11-30 04:10:46.989954 【4644】【20*3】可用 10.648954079634029 台 target:[2023-11-30 10:30:00] 2023-11-30 04:20:46.321453 【4527】【20*3】可用 10.661820265780081 台 target:[2023-11-30 10:30:00] 2023-11-30 04:21:47.142037 【4517】【20*3】可用 10.667642821717875 台 target:[2023-11-30 10:30:00] 2023-11-30 04:31:46.460982 【4400】【20*3】可用 10.680929483613474 台 target:[2023-11-30 10:30:00] 2023-11-30 04:32:47.281991 【4388】【20*3】可用 10.682116948244802 台 target:[2023-11-30 10:30:00] 2023-11-30 04:42:46.600269 【4278】【20*3】可用 10.713771420342725 台 target:[2023-11-30 10:30:00] 2023-11-30 04:43:47.420435 【4268】【20*3】可用 10.720116544847162 台 target:[2023-11-30 10:30:00] 2023-11-30 04:53:46.741569 【4159】【20*3】可用 10.756521308076445 台 target:[2023-11-30 10:30:00] 2023-11-30 04:54:47.550361 【4143】【20*3】可用 10.747639306838227 台 target:[2023-11-30 10:30:00] 2023-11-30 05:04:46.863166 【4031】【20*3】可用 10.778098881682 台 target:[2023-11-30 10:30:00] 2023-11-30 05:05:47.672952 【4024】【20*3】可用 10.7931228710136 台 target:[2023-11-30 10:30:00] 2023-11-30 05:15:47.010216 【3916】【20*3】可用 10.837738355519887 台 target:[2023-11-30 10:30:00] 2023-11-30 05:16:47.803229 【3902】【20*3】可用 10.833472152812483 台 target:[2023-11-30 10:30:00] 2023-11-30 05:26:47.138876 【3787】【20*3】可用 10.86096133991052 台 target:[2023-11-30 10:30:00] 2023-11-30 05:27:47.952390 【3777】【20*3】可用 10.868126492676891 台 target:[2023-11-30 10:30:00] 2023-11-30 05:37:47.278484 【3669】【20*3】可用 10.918667976073564 台 target:[2023-11-30 10:30:00] 2023-11-30 05:38:48.088912 【3649】【20*3】可用 10.89706420328843 台 target:[2023-11-30 10:30:00] 2023-11-30 05:48:47.476041 【3547】【20*3】可用 10.96852000742161 台 target:[2023-11-30 10:30:00] 2023-11-30 05:49:48.206228 【3531】【20*3】可用 10.958663194130137 台 target:[2023-11-30 10:30:00] 2023-11-30 05:59:47.629557 【3418】【20*3】可用 10.99990345315869 台 target:[2023-11-30 10:30:00] 2023-11-30 06:00:48.354919 【3409】【20*3】可用 11.012375058214191 台 target:[2023-11-30 10:30:00] 2023-11-30 06:10:47.907827 【3298】【20*3】可用 11.06414385399893 台 target:[2023-11-30 10:30:00] 2023-11-30 06:11:48.488046 【3287】【20*3】可用 11.07066375146298 台 target:[2023-11-30 10:30:00] 2023-11-30 06:21:48.031483 【3186】【20*3】可用 11.162855883185934 台 target:[2023-11-30 10:30:00] 2023-11-30 06:22:49.558274 【3175】【20*3】可用 11.170072414905157 台 target:[2023-11-30 10:30:00] 2023-11-30 06:32:48.192344 【3057】【20*3】可用 11.20762083999108 台 target:[2023-11-30 10:30:00] 2023-11-30 06:33:49.714149 【3041】【20*3】可用 11.196956214905954 台 target:[2023-11-30 10:30:00] 2023-11-30 06:43:48.328765 【2940】【20*3】可用 11.302874095337565 台 target:[2023-11-30 10:30:00] 2023-11-30 06:44:49.860935 【2930】【20*3】可用 11.31528980143533 台 target:[2023-11-30 10:30:00] 2023-11-30 06:54:48.482158 【2821】【20*3】可用 11.39978380417103 台 target:[2023-11-30 10:30:00] 2023-11-30 06:55:49.982962 【2804】【20*3】可用 11.384875655557435 台 target:[2023-11-30 10:30:00] 2023-11-30 07:05:48.630791 【2689】【20*3】可用 11.451771461424622 台 target:[2023-11-30 10:30:00] 2023-11-30 07:06:50.116575 【2682】【20*3】可用 11.480058641612002 台 target:[2023-11-30 10:30:00] 2023-11-30 07:16:48.765523 【2565】【20*3】可用 11.545689496723469 台 target:[2023-11-30 10:30:00] 2023-11-30 07:17:50.244726 【2554】【20*3】可用 11.557999298555249 台 target:[2023-11-30 10:30:00] 2023-11-30 07:27:48.912466 【2439】【20*3】可用 11.641402791422879 台 target:[2023-11-30 10:30:00] 2023-11-30 07:28:50.375218 【2426】【20*3】可用 11.645405561089177 台 target:[2023-11-30 10:30:00] 2023-11-30 07:38:49.061607 【2318】【20*3】可用 11.775962067651667 台 target:[2023-11-30 10:30:00] 2023-11-30 07:39:50.506876 【2309】【20*3】可用 11.800329632421521 台 target:[2023-11-30 10:30:00] 2023-11-30 07:49:49.191050 【2195】【20*3】可用 11.916934352802787 台 target:[2023-11-30 10:30:00] 2023-11-30 07:50:50.633955 【2179】【20*3】可用 11.905640016937806 台 target:[2023-11-30 10:30:00] 2023-11-30 08:00:49.337914 【2060】【20*3】可用 12.008744231236335 台 target:[2023-11-30 10:30:00] 2023-11-30 08:01:50.754962 【2050】【20*3】可用 12.03245828992355 台 target:[2023-11-30 10:30:00] 2023-11-30 08:11:49.479395 【1944】【20*3】可用 12.234751140714325 台 target:[2023-11-30 10:30:00] 2023-11-30 08:12:50.888426 【1936】【20*3】可用 12.274723010350456 台 target:[2023-11-30 10:30:00] 2023-11-30 08:22:49.599612 【1821】【20*3】可用 12.451991566471024 台 target:[2023-11-30 10:30:00] 2023-11-30 08:23:51.023076 【1803】【20*3】可用 12.429910837393145 台 target:[2023-11-30 10:30:00] 2023-11-30 08:33:49.726603 【1697】【20*3】可用 12.702888154201235 台 target:[2023-11-30 10:30:00] 2023-11-30 08:34:52.002360 【1683】【20*3】可用 12.7130006735448 台 target:[2023-11-30 10:30:00] 2023-11-30 08:45:00.091137 【1566】【20*3】可用 12.971002988742175 台 target:[2023-11-30 10:30:00] 2023-11-30 08:46:00.217030 【1558】【20*3】可用 13.028843808581364 台 target:[2023-11-30 10:30:00] 2023-11-30 08:56:00.236922 【1441】【20*3】可用 13.332613707333246 台 target:[2023-11-30 10:30:00] 2023-11-30 08:57:00.375330 【1430】【20*3】可用 13.373130606233 台 target:[2023-11-30 10:30:00] 2023-11-30 09:07:00.386622 【1321】【20*3】可用 13.842486268414296 台 target:[2023-11-30 10:30:00] 2023-11-30 09:08:02.460557 【1310】【20*3】可用 13.900310369525426 台 target:[2023-11-30 10:30:00] ('Connection aborted.', ConnectionResetError(10054, '远程主机强迫关闭了一个现有的连接。', None, 10054, None)) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) ('Connection aborted.', ConnectionResetError(10054, '远程主机强迫关闭了一个现有的连接。', None, 10054, None)) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) ('Connection aborted.', ConnectionResetError(10054, '远程主机强迫关闭了一个现有的连接。', None, 10054, None)) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) 14 49 day is out of range for month 14 51 day is out of range for month 14 59 day is out of range for month 15 1 day is out of range for month HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:992)'))) HTTPSConnectionPool(host='owapi.http.linkudp.com', port=443): Max retries exceeded with url: /package_balance?neek=2194204&appkey=e79e64c054a68b732c6f6300eac28680&ac=329502 (Caused by ProxyError('Unable to connect to proxy', RemoteDisconnected('Remote end closed connection without response')))