DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Filter All URLs From Standard Input
Code:
Put the following in a file named url_scrape.py.
#!/usr/bin/env python
'''Prints a list of URLs that are found in standard input.
It will only find URLs between quotes ("" or '') and starting with http://
'''
import re
import sys
# Pattern for fully-qualified URLs:
url_pattern = re.compile('''["']http://[^+]*?['"]''')
# build list of all URLs found in standard input
s = sys.stdin.read()
all = url_pattern.findall(s)
# output all the URLs
for i in all:
print i.strip('"').strip("'")
Example Usage:
wget -O - http://madphilosopher.ca/ | ./url_scrape.py | sort | uniq





