Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
dezzyderr
SUBMITTED BY:
dezzyderr
DATE:
Oct. 9, 2022, 1:28 p.m.
FORMAT:
Text only
SIZE:
184 Bytes
Raw
Download
Tweet
HITS:
495
Go to comments
Report
import requests
import re
url = input("Enter the URL: ")
html = requests.get(url).text
links = re.findall('"(https?://.*?)"', html)
for link in links:
print(link)
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus