120 KiB
		
	
	
	
	
	
			
		
		
	
	
			120 KiB
		
	
	
	
	
	
In [4]:
import pandas as pd import requests from login_for_cookie import Vc import pendulum import json from utils.gtools import MySQLconnect from lxml import etree from pathlib import Path from datetime import datetime cookie = Vc() headers = {"Cookie":cookie}
In [59]:
def get_fs(row): data = row["采购单号"] buy_url = "http://cp.maso.hk/index.php?main=store_in_receive" payload = { "s_pid": 2867159, "s_suborderid": "", "pdt_standard_id": "", "s_store": -1, "s_status[0]": 0, "s_sort": "desc", "Submit": "查询", "synergy_sign": -1, "start_dep": "", "start_user": "", "to_dep": "", "to_user": "", "swebid": 0, "local_pdt_id": 0, "sadd_time": "", "sadd_time_end": "", "sreal_express_no": "", "sweb_id": "", "sof": 0, "soe": 0, "sod": "", "tsid": -1, "tsdid": -1, "tsst": -1, "order_cate": -1, "error_status": -1, "web_uid": -1, "team_id": -1, "handle": -1, "handle_uid": 0, "handle_time_start": "", "handle_time_end": "", "shiping_time_start": "", "shiping_time_end": "", "trade_time_start": "", "trade_time_end": "", "order_express_fee": -1, "web_type": -1, "shipping_type": -1, "maintain_add_time_s": "", "maintain_add_time_e": "", "maintain_comfirm_time_s": "", "maintain_comfirm_time_e": "", "dispense_user_id": "", "export_page": 1 } payload["s_pid"] = data resp = requests.post(url = buy_url ,headers=headers , data=payload) buy_df_list = pd.read_html(resp.text,match="所属网站ID") buy_df = buy_df_list[1] buy_df.columns = buy_df.loc[0,:] trade_id = buy_df["交易ID"][1] #交易明细里头 trade_url = f"http://cp.maso.hk/index.php?main=store_tradelist_info&trade_id={trade_id}" resp2 = requests.get(url = trade_url ,headers=headers ) df_list2 = pd.read_html(resp2.text,match="下单发货时间") df2 = df_list2[0] df2.columns = df2.loc[0,:] 下单发货时间 = int(df2.iloc[2,1][0].replace("--","0")) 维护发货时间 = int(df2.iloc[2,3].replace("--","0")) 支付时间 = pendulum.parse(df2.iloc[3,3]) 最大发货时间 = 支付时间.add(days=max(下单发货时间,维护发货时间)) #交易列表 trade_list_url = f"http://cp.maso.hk/index.php?main=store_in_receive&navlist=trade_list&s_trade_id={trade_id}" resp3 = requests.get(url = trade_list_url ,headers=headers ) df_list3 = pd.read_html(resp3.text,match="涨幅") df3 = df_list3[0] df3.columns = df3.loc[0,:] 交易平台 = df3["交易平台"][1] 交易号 = df3["交易号"][1] 交易平台订单号 = df3["交易平台订单号"][1] return pd.Series([trade_id,下单发货时间, 维护发货时间,支付时间,最大发货时间,交易平台,交易号,交易平台订单号])
In [ ]:
url = f"https://cp.maso.hk/index.php?main=orderlist_info&id={order_id}" resp = requests.get(url = url ,headers=headers)
In [24]:
import pandas as pd df_list = pd.read_html(resp.text,match="基础估算") goaldf = df_list[1]
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\1954736416.py:2: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
In [49]:
df = pd.read_excel(r"F:\DOCUMENTS\WXWork\1688854527635889\Cache\File\2025-05\新建Microsoft Excel 工作表 (2)(1).xlsx",sheet_name="Sheet5")
In [59]:
import pandas as pd def a(order_id,package): url = f"https://cp.maso.hk/index.php?main=orderlist_info&id={order_id}" resp = requests.get(url = url ,headers=headers) df_list = pd.read_html(resp.text,match="基础估算") goaldf = df_list[1] for idx,value in goaldf[1].items(): if str(package) == str(value): fees = goaldf[5][idx+1] fee_list= fees.split(' ') fee1 = fee_list[1] fee2 = fee_list[2] print(fees) fee = (float(fee1.replace(',','')) + float(fee2.replace(',','')))/7 print(fee1,fee2,fee) return round(fee,2)
In [60]:
for index,row in df.iterrows(): if row['快递公司'] =="海MS-WWEX-SAIR": df.at[index,'尾端'] = a(row["order_id"],row["包裹号"]) else: continue df.to_clipboard(index=False)
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
11.00 196.95 0.00 -- 196.95 0.00 28.135714285714283
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
55.00 458.24 0.00 -- 458.24 0.00 65.46285714285715
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
68.00 1,305.15 0.00 -- 1,305.15 0.00 186.45000000000002
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
42.00 566.93 0.00 -- 566.93 0.00 80.99
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
26.00 546.00 0.00 -- 546.00 0.00 78.0
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
46.00 1,005.83 0.00 -- 1,005.83 0.00 143.69
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
10.00 287.84 0.00 -- 287.84 0.00 41.12
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
38.50 584.96 0.00 -- 584.96 0.00 83.5657142857143
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
4.50 172.62 0.00 -- 172.62 0.00 24.66
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
19.00 355.36 0.00 -- 355.36 0.00 50.76571428571429
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
29.00 1,745.10 0.00 -- 1,745.10 0.00 249.29999999999998
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
38.00 1,321.32 0.00 -- 1,321.32 0.00 188.76
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
18.50 668.58 0.00 -- 668.58 0.00 95.51142857142858
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
15.50 480.76 0.00 -- 480.76 0.00 68.67999999999999
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
32.50 1,371.96 0.00 -- 1,371.96 0.00 195.99428571428572
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
70.00 1,557.29 0.00 -- 1,557.29 0.00 222.47
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
72.00 1,112.93 0.00 -- 1,112.93 0.00 158.99
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
43.00 1,112.93 0.00 -- 1,112.93 0.00 158.99
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
75.50 1,654.45 0.00 -- 1,654.45 0.00 236.35
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
14.00 746.44 0.00 -- 746.44 0.00 106.63428571428572
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
50.00 726.74 0.00 -- 726.74 0.00 103.82000000000001
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
64.00 834.00 0.00 -- 834.00 0.00 119.14285714285714
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
11.00 776.21 0.00 -- 776.21 0.00 110.88714285714286
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
34.00 569.86 0.00 -- 569.86 0.00 81.40857142857143
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
16.00 665.08 0.00 -- 665.08 0.00 95.01142857142858
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
17.00 58.73 0.00 -- 58.73 0.00 8.389999999999999
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
10.00 65.22 0.00 -- 65.22 0.00 9.317142857142857
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
94.00 1,047.71 0.00 -- 1,047.71 0.00 149.67285714285714
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
53.40 1,706.04 0.00 -- 1,706.04 0.00 243.72
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
42.00 502.91 0.00 -- 502.91 0.00 71.84428571428572
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
40.00 734.64 0.00 -- 734.64 0.00 104.94857142857143
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
25.00 201.80 0.00 -- 201.80 0.00 28.82857142857143
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
77.50 1,112.93 0.00 -- 1,112.93 0.00 158.99
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
18.00 366.46 0.00 -- 366.46 0.00 52.35142857142857
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
63.00 1,176.81 0.00 -- 1,176.81 0.00 168.1157142857143
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
3.00 111.18 0.00 -- 111.18 0.00 15.882857142857144
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
87.00 1,362.52 0.00 -- 1,362.52 0.00 194.6457142857143
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
46.00 610.15 0.00 -- 610.15 0.00 87.16428571428571
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
111.50 1,112.93 0.00 -- 1,112.93 0.00 158.99
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
56.00 1,112.93 0.00 -- 1,112.93 0.00 158.99
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
12.00 1,848.98 0.00 -- 1,848.98 0.00 264.14
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
8.50 861.89 0.00 -- 861.89 0.00 123.12714285714286
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
34.00 844.15 0.00 -- 844.15 0.00 120.59285714285714
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
38.00 884.74 0.00 -- 884.74 0.00 126.39142857142858
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
36.00 217.34 0.00 -- 217.34 0.00 31.048571428571428
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
20.00 191.59 0.00 -- 191.59 0.00 27.37
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
7.50 168.42 0.00 -- 168.42 0.00 24.06
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
14.50 411.46 0.00 -- 411.46 0.00 58.779999999999994
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
31.50 265.11 0.00 -- 265.11 0.00 37.87285714285714
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
15.00 680.76 0.00 -- 680.76 0.00 97.25142857142858
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
75.50 681.64 0.00 -- 681.64 0.00 97.37714285714286
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
27.00 1,293.67 0.00 -- 1,293.67 0.00 184.81
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
9.00 158.85 0.00 -- 158.85 0.00 22.692857142857143
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
43.00 753.04 0.00 -- 753.04 0.00 107.57714285714285
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
43.00 753.04 0.00 -- 753.04 0.00 107.57714285714285
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
9.00 158.85 0.00 -- 158.85 0.00 22.692857142857143
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
31.50 2,717.19 0.00 -- 2,717.19 0.00 388.17
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
36.00 1,293.67 0.00 -- 1,293.67 0.00 184.81
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
8.00 125.74 0.00 -- 125.74 0.00 17.962857142857143
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
8.00 125.74 0.00 -- 125.74 0.00 17.962857142857143
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
40.00 701.49 0.00 -- 701.49 0.00 100.21285714285715
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
40.00 701.49 0.00 -- 701.49 0.00 100.21285714285715
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
91.00 1,293.67 0.00 -- 1,293.67 0.00 184.81
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
8.00 998.80 0.00 -- 998.80 0.00 142.68571428571428
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
47.00 3,109.78 0.00 -- 3,109.78 0.00 444.25428571428574
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
13.00 283.85 0.00 -- 283.85 0.00 40.550000000000004
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
79.00 1,112.93 0.00 -- 1,112.93 0.00 158.99
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
55.00 1,706.04 0.00 -- 1,706.04 0.00 243.72
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
66.50 1,470.63 0.00 -- 1,470.63 0.00 210.09
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
82.00 1,195.02 0.00 -- 1,195.02 0.00 170.71714285714285
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
124.00 932.68 0.00 -- 932.68 0.00 133.23999999999998
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
98.00 686.56 0.00 -- 686.56 0.00 98.08
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
83.00 1,823.78 0.00 -- 1,823.78 0.00 260.54
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
92.00 1,898.47 0.00 -- 1,898.47 0.00 271.21
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
35.00 508.29 0.00 -- 508.29 0.00 72.61285714285715
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
10.00 313.33 0.00 -- 313.33 0.00 44.76142857142857
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
43.00 1,002.17 0.00 -- 1,002.17 0.00 143.16714285714286
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
9.00 166.70 0.00 -- 166.70 0.00 23.814285714285713
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
30.00 858.05 0.00 -- 858.05 0.00 122.57857142857142
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
7.00 259.06 0.00 -- 259.06 0.00 37.00857142857143
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
7.00 268.22 0.00 -- 268.22 0.00 38.31714285714286
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
12.00 217.65 0.00 -- 217.65 0.00 31.092857142857145
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
8.00 216.96 0.00 -- 216.96 0.00 30.994285714285716
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
9.00 70.88 0.00 -- 70.88 0.00 10.125714285714285
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
65.00 662.15 0.00 -- 662.15 0.00 94.59285714285714
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
13.00 565.28 0.00 -- 565.28 0.00 80.75428571428571
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
63.50 1,219.12 0.00 -- 1,219.12 0.00 174.16
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
87.00 1,293.67 0.00 -- 1,293.67 0.00 184.81
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
77.00 1,291.01 0.00 -- 1,291.01 0.00 184.43
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
70.50 1,268.21 0.00 -- 1,268.21 0.00 181.17285714285714
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
52.00 633.58 0.00 -- 633.58 0.00 90.51142857142858
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
39.00 1,151.14 0.00 -- 1,151.14 0.00 164.44857142857146
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
18.50 672.65 0.00 -- 672.65 0.00 96.09285714285714
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
17.00 12.69 0.00 -- 12.69 0.00 1.8128571428571427
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
31.50 427.70 0.00 -- 427.70 0.00 61.1
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
55.00 1,414.35 0.00 -- 1,414.35 0.00 202.04999999999998
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
24.00 2,717.19 0.00 -- 2,717.19 0.00 388.17
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
62.50 659.90 0.00 -- 659.90 0.00 94.27142857142857
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
63.50 633.77 0.00 -- 633.77 0.00 90.53857142857143
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
45.00 1,321.32 0.00 -- 1,321.32 0.00 188.76
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
10.50 124.09 0.00 -- 124.09 0.00 17.72714285714286
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
21.00 130.88 0.00 -- 130.88 0.00 18.697142857142858
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
33.50 467.88 0.00 -- 467.88 0.00 66.84
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
5.50 71.12 0.00 -- 71.12 0.00 10.16
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
26.00 204.67 0.00 -- 204.67 0.00 29.238571428571426
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
12.00 114.30 0.00 -- 114.30 0.00 16.32857142857143
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
75.00 597.92 0.00 -- 597.92 0.00 85.41714285714285
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
55.00 409.39 0.00 -- 409.39 0.00 58.48428571428571
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
70.00 510.79 0.00 -- 510.79 0.00 72.97
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
15.50 1,321.32 0.00 -- 1,321.32 0.00 188.76
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
33.50 0.00 0.00 -- 0.00 0.00 0.0
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
32.50 0.00 0.00 -- 0.00 0.00 0.0
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
10.00 64.24 0.00 -- 64.24 0.00 9.177142857142856
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
18.00 52.24 0.00 -- 52.24 0.00 7.4628571428571435
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
135.00 1,060.14 0.00 -- 1,060.14 0.00 151.44857142857146
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
69.00 1,112.93 0.00 -- 1,112.93 0.00 158.99
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
106.00 1,293.67 0.00 -- 1,293.67 0.00 184.81
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
52.00 1,112.93 0.00 -- 1,112.93 0.00 158.99
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
51.00 1,293.67 0.00 -- 1,293.67 0.00 184.81
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
17.00 81.37 0.00 -- 81.37 0.00 11.624285714285715
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
28.00 390.43 0.00 -- 390.43 0.00 55.77571428571429
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
14.00 145.93 0.00 -- 145.93 0.00 20.84714285714286
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
15.00 675.94 0.00 -- 675.94 0.00 96.56285714285715
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
8.00 359.12 0.00 -- 359.12 0.00 51.30285714285714
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
52.00 1,346.92 0.00 -- 1,346.92 0.00 192.41714285714286
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
52.80 1,208.60 0.00 -- 1,208.60 0.00 172.65714285714284
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
15.20 161.23 0.00 -- 161.23 0.00 23.032857142857143
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
3.00 194.22 0.00 -- 194.22 0.00 27.745714285714286
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
103.50 2,270.55 0.00 -- 2,270.55 0.00 324.36428571428576
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
8.00 311.90 0.00 -- 311.90 0.00 44.55714285714286
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
8.00 311.90 0.00 -- 311.90 0.00 44.55714285714286
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
51.50 669.99 0.00 -- 669.99 0.00 95.71285714285715
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
62.00 572.74 0.00 -- 572.74 0.00 81.82000000000001
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
24.00 443.14 0.00 -- 443.14 0.00 63.30571428571428
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
10.00 184.83 0.00 -- 184.83 0.00 26.404285714285717
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
87.50 1,112.93 0.00 -- 1,112.93 0.00 158.99
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
23.00 128.17 0.00 -- 128.17 0.00 18.31
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
65.00 1,372.30 0.00 -- 1,372.30 0.00 196.04285714285714
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
7.00 252.82 0.00 -- 252.82 0.00 36.11714285714286
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
40.00 212.97 0.00 -- 212.97 0.00 30.424285714285713
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
38.00 374.17 0.00 -- 374.17 0.00 53.45285714285715
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
42.00 352.17 0.00 -- 352.17 0.00 50.31
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
35.00 100.72 0.00 -- 100.72 0.00 14.388571428571428
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
35.00 136.72 0.00 -- 136.72 0.00 19.53142857142857
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
90.00 1,112.93 0.00 -- 1,112.93 0.00 158.99
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
39.00 295.59 0.00 -- 295.59 0.00 42.22714285714285
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
43.00 817.34 0.00 -- 817.34 0.00 116.76285714285714
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
69.00 1,784.72 0.00 -- 1,784.72 0.00 254.96
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
20.00 879.20 0.00 -- 879.20 0.00 125.60000000000001
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
62.00 520.80 0.00 -- 520.80 0.00 74.39999999999999
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
90.00 1,823.78 0.00 -- 1,823.78 0.00 260.54
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
10.00 186.64 0.00 -- 186.64 0.00 26.662857142857142
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
8.00 109.85 0.00 -- 109.85 0.00 15.692857142857141
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
8.00 109.85 0.00 -- 109.85 0.00 15.692857142857141
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
8.00 109.85 0.00 -- 109.85 0.00 15.692857142857141
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
8.00 109.85 0.00 -- 109.85 0.00 15.692857142857141
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
15.00 88.37 0.00 -- 88.37 0.00 12.624285714285715
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
15.00 88.37 0.00 -- 88.37 0.00 12.624285714285715
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
15.00 88.37 0.00 -- 88.37 0.00 12.624285714285715
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
15.00 88.37 0.00 -- 88.37 0.00 12.624285714285715
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
26.00 652.37 0.00 -- 652.37 0.00 93.19571428571429
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
18.50 818.26 0.00 -- 818.26 0.00 116.89428571428572
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
221.00 1,176.63 0.00 -- 1,176.63 0.00 168.09
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
71.50 503.83 0.00 -- 503.83 0.00 71.97571428571429
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
49.00 335.93 0.00 -- 335.93 0.00 47.99
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
58.00 336.75 0.00 -- 336.75 0.00 48.107142857142854
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
54.00 1,293.67 0.00 -- 1,293.67 0.00 184.81
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
60.00 522.81 0.00 -- 522.81 0.00 74.68714285714285
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
63.00 421.55 0.00 -- 421.55 0.00 60.221428571428575
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
60.00 574.14 0.00 -- 574.14 0.00 82.02
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
64.00 394.98 0.00 -- 394.98 0.00 56.425714285714285
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
25.00 99.65 0.00 -- 99.65 0.00 14.235714285714286
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
23.50 1,706.04 0.00 -- 1,706.04 0.00 243.72
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
21.50 496.83 0.00 -- 496.83 0.00 70.97571428571429
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
21.00 496.83 0.00 -- 496.83 0.00 70.97571428571429
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
135.00 1,654.45 0.00 -- 1,654.45 0.00 236.35
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
35.00 1,112.93 0.00 -- 1,112.93 0.00 158.99
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
14.50 233.58 0.00 -- 233.58 0.00 33.36857142857143
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
63.00 765.01 0.00 -- 765.01 0.00 109.28714285714285
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
46.50 573.57 0.00 -- 573.57 0.00 81.93857142857144
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
29.50 369.50 0.00 -- 369.50 0.00 52.785714285714285
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
23.00 133.33 0.00 -- 133.33 0.00 19.04714285714286
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
14.50 124.12 0.00 -- 124.12 0.00 17.731428571428573
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
31.00 755.14 0.00 -- 755.14 0.00 107.87714285714286
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
19.00 351.27 0.00 -- 351.27 0.00 50.18142857142857
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
21.00 346.41 0.00 -- 346.41 0.00 49.487142857142864
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
6.00 224.63 0.00 -- 224.63 0.00 32.089999999999996
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
39.80 1,293.67 0.00 -- 1,293.67 0.00 184.81
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
138.00 1,219.12 0.00 -- 1,219.12 0.00 174.16
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
40.00 888.23 0.00 -- 888.23 0.00 126.89
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
20.50 405.44 0.00 -- 405.44 0.00 57.92
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
78.00 0.00 0.00 -- 0.00 0.00 0.0
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
70.00 0.00 0.00 -- 0.00 0.00 0.0
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
2.00 0.00 0.00 -- 0.00 0.00 0.0
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
2.00 0.00 0.00 -- 0.00 0.00 0.0
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
53.00 0.00 0.00 -- 0.00 0.00 0.0
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
47.00 0.00 0.00 -- 0.00 0.00 0.0
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
7.50 220.14 0.00 -- 220.14 0.00 31.448571428571427
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
36.00 892.79 0.00 -- 892.79 0.00 127.54142857142857
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
16.20 374.76 0.00 -- 374.76 0.00 53.537142857142854
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
95.50 1,293.67 0.00 -- 1,293.67 0.00 184.81
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
46.00 1,293.67 0.00 -- 1,293.67 0.00 184.81
C:\Users\Admin\AppData\Local\Temp\ipykernel_30268\3462512415.py:6: FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. df_list = pd.read_html(resp.text,match="基础估算")
33.00 649.96 0.00 -- 649.96 0.00 92.85142857142857