try to wget tags.js

This commit is contained in:
2024-04-01 23:02:23 +02:00
parent 283bbb9a74
commit e52694ce82
2 changed files with 15 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
TAGS_JS_FILE_URL = "https://d.digital.hermes/tags.js"
def download_tags_file(url):
import wget
_file_name = wget.download(url)
print(_file_name)
if __name__ == '__main__':
download_tags_file(TAGS_JS_FILE_URL)