logistics/自动化跟单.ipynb

3460 lines
120 KiB
Plaintext

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