This commit is contained in:
DingZQ
2025-03-19 22:29:56 +08:00
parent 62fc0e1271
commit fe1fa97000

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'http://localhost/queryallrecordbydatewithtype/?querydate={date}&querytype=flow')
response = urllib.request.urlopen(f'http://localhost/queryallrecordsbydatewithtype/?querydate={date}&querytype=flow')
html = response.read().decode('utf-8')
print(html)
except urllib.error.URLError as e: