Skip to content
This repository was archived by the owner on Oct 13, 2025. It is now read-only.

Commit b8fa2ad

Browse files
committed
fix: update URL in read_covid_narratives method to correct endpoint
1 parent 8099379 commit b8fa2ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qrmine/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def __init__(self):
1111
def read_covid_narratives(output_folder):
1212
os.makedirs(output_folder, exist_ok=True)
1313
for doc_count in range(1, 115):
14-
url = f"https://covidstories.omeka.net/items/show/{doc_count}"
14+
url = f"https://root-url-here/items/show/{doc_count}"
1515
html = requests.get(url).text
1616
# Extract <a class="download-file" href
1717
pattern = r'<a class="download-file" href="(.*?)">'

0 commit comments

Comments
 (0)