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 866d464 commit 7999c95Copy full SHA for 7999c95
automaticwebsiteurlscraper.py/webUrlscraper.py
@@ -26,11 +26,11 @@
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
33
- for i in finalLinks:
+ for i in finalLinks :
34
print(i)
35
-except Exception as e:
36
- print(str( e ))
+except Exception as e :
+ print(str(e))
0 commit comments