Skip to content

Instantly share code, notes, and snippets.

View joaquinabian's full-sized avatar

joaquinabian joaquinabian

View GitHub Profile
@joaquinabian
joaquinabian / get_gohlke
Created February 15, 2011 16:39
Quick and dirty snippet for checking new releases in Gohlke repository
#Check http://www.lfd.uci.edu/~gohlke/pythonlibs/ for new releases
#works for Python 3.2
from urllib import request
from html.parser import HTMLParser
import re
import datetime
from collections import defaultdict
months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',