Skip to content

Instantly share code, notes, and snippets.

@ronan-mch
ronan-mch / StackOverflow.py
Created October 24, 2011 20:35
This is a script for scraping the site Stack Overflow's user pages and returning relevant data from the html doc as a csv
#Stack Overflow scraper script
#imports necessary modules
from urllib2 import urlopen
from BeautifulSoup import BeautifulSoup
import time
username = raw_input("Username: ")