We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffae454 commit c7965b2Copy full SHA for c7965b2
automaticwebsiteurlscraper.py/webUrlscraper.py
@@ -26,7 +26,7 @@
26
if 'href' in str(link) :
27
templist = str(link).split("href")
28
index1 = templist[-1].index("\"")
29
- index2 = templist[-1][index1 + 1 : ].index("\"")
+ index2 = templist[-1][index1 + 1 :].index("\"")
30
finalLinks.append(templist[-1][index1 : index2 + 3])
31
print("Here are your final links")
32
# printing the final completed list
0 commit comments