Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ dataset = load_dataset("awacke1/DatasetOfDatasetsUSA")
|
|
9 |
# and a column 'title' for the text to display
|
10 |
links_html = "<ul>"
|
11 |
for item in dataset['train']: # Replace 'train' with the correct split if necessary
|
12 |
-
title = item['
|
13 |
url = item['url']
|
14 |
links_html += f"<li><a href='{link}' target='_blank'>{cityOrState}</a></li>"
|
15 |
links_html += "</ul>"
|
|
|
9 |
# and a column 'title' for the text to display
|
10 |
links_html = "<ul>"
|
11 |
for item in dataset['train']: # Replace 'train' with the correct split if necessary
|
12 |
+
title = item['linkType']
|
13 |
url = item['url']
|
14 |
links_html += f"<li><a href='{link}' target='_blank'>{cityOrState}</a></li>"
|
15 |
links_html += "</ul>"
|