This commit is contained in:
DingZQ
2025-04-19 11:17:38 +08:00
parent 6eedd0d55a
commit ed11fefbab

View File

@@ -66,7 +66,7 @@ def queryallscadarecordsbydate_by_url(querydate: str):
try:
response = urllib.request.urlopen(
f"http://localhost/queryallrecordsbydate/?querydate={querydate}"
f"http://localhost/queryallscadarecordsbydate/?querydate={querydate}"
)
html = response.read().decode("utf-8")
@@ -102,7 +102,6 @@ def auto_cache_data_by_url():
queryallrecordsbydate_by_url(str_prev_day)
queryallscadarecordsbydate_by_url(str_prev_day)
redis_client.close()
if __name__ == "__main__":