dezzyderr


SUBMITTED BY: dezzyderr

DATE: Oct. 9, 2022, 1:28 p.m.

FORMAT: Text only

SIZE: 184 Bytes

HITS: 495

  1. import requests
  2. import re
  3. url = input("Enter the URL: ")
  4. html = requests.get(url).text
  5. links = re.findall('"(https?://.*?)"', html)
  6. for link in links:
  7. print(link)

comments powered by Disqus