You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
696 B
Python

#!/usr/bin/python
import urllib, re
def get_category_listings(url):
contents = urllib.urlopen(url).read()
matches = re.findall('<a href="(http:\/\/www\.webshots\.com\/members\/[^/]+\/[^/]+\.html)">top members</a>', contents)
return matches
def get_user_listings(url):
contents = urllib.urlopen(url).read()
matches = re.findall('<a href="(http:\/\/www\.webshots\.com\/members\/[^/]+\/[^/]+\.html)">[0-9]+-[0-9]+</a>', contents)
if len(matches) > 0:
matches.pop(0)
return matches
def get_users(url):
contents = urllib.urlopen(url).read()
matches = re.findall('http:\/\/community\.webshots\.com\/user\/([^/\'"]+)', contents)
return [value for value in matches if value != "my"]