flask-soc-site/host_lookup/parse_URI.py

10 lines
193 B
Python
Raw Normal View History

2024-08-29 21:03:36 +02:00
# This module should extract any and all URIs (IPs or URLs) from copy and pasted text.
def parse(text):
split_text = text.split()
for URI in split_text:
print(URI)