This commit is contained in:
DingZQ
2025-03-19 22:28:47 +08:00
parent b3351ba6f8
commit 62fc0e1271

View File

@@ -7,7 +7,7 @@ import urllib.request
def query_all_records_by_date_with_type_flow(date: str):
try:
response = urllib.request.urlopen(f'localhost/queryallrecordbydatewithtype/?querydate={date}&querytype=flow')
response = urllib.request.urlopen(f'http://localhost/queryallrecordbydatewithtype/?querydate={date}&querytype=flow')
html = response.read().decode('utf-8')
print(html)
except urllib.error.URLError as e: