Top 500 Sites in Australia According to Alexa
Need to analyse a list of top sites in Australia, and the following Python scripts helped me to get the site name + domain name off from Alexa with minimum effort: #!/usr/bin/env python import re, urllib r = r'<a href="/siteinfo/(.*?)" ><strong>(.*?)</strong>'; for i in range(25): u = 'http://www.alexa.com/topsites/countries;%d/AU' % i for x, m in enumerate(re.findall(r, [...]
