from bs4 import BeautifulSoup
a = """
|
Decrepit Sewers
|
9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-919
|
-1883
|
Sewers of Ragni
|
|
Infested Pit
|
18
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-171
|
-1820
|
Arachnids' Ascent
|
|
Lost Sanctuary
|
24
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-262
|
-1045
|
Studying the Corrupt
|
|
Underworld Crypt
|
27
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227
|
-1950
|
The Dark Descent
|
|
Sand-Swept Tomb
|
36
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1409
|
-1830
|
Kingdom of Sand
|
|
Ice Barrows
|
45
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117
|
-667
|
Fate of the Fallen
|
|
Undergrowth Ruins
|
54
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-660
|
-835
|
Corrupted Betrayal
|
|
Galleon's Graveyard
|
63
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-583
|
-3468
|
Redbeard's Booty
|
|
Corrupted Decrepit Sewers
|
70
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-860
|
-4900
|
None
|
|
Corrupted Infested Pit
|
74
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-860
|
-4900
|
None
|
|
Corrupted Lost Sanctuary
|
78
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-860
|
-4900
|
None
|
|
Corrupted Underworld Crypt
|
82
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-860
|
-4900
|
None
|
|
Corrupted Sand-Swept Tomb
|
86
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-860
|
-4900
|
None
|
|
Fallen Factory
|
90
|
Unknown
|
-1675
|
-2600
|
The Envoy Part II
|
|
Corrupted Ice Barrows
|
90
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-860
|
-4900
|
None
|
|
Corrupted Undergrowth Ruins
|
94
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-860
|
-4900
|
None
|
|
Eldritch Outlook
|
101
|
Unknown
|
-1310
|
-777
|
A Journey Further
|
"""
h = BeautifulSoup(a, 'html.parser')
tr = h.find_all("tr")
for t in tr:
tds = t.find_all("td")
try:
print("{\"minlevel\": %s, \"name\": \"%s\", \"url\": \"https://wynncraft.gamepedia.com%s\", \"location\": \"%s, %s\"}," % (tds[2].text.replace("\n", ""), tds[1].text.replace("\n", ""), tds[1].a["href"].replace("\n", ""), tds[23].text.replace("\n", ""), tds[24].text.replace("\n", "")))
except:
continue