Skip to content

Instantly share code, notes, and snippets.

View nosamanuel's full-sized avatar

Noah Seger nosamanuel

View GitHub Profile
# Check how many users are *still* on IE6
# Also check the other IE versions out of curiosity
ip_agents = {}
ip_counts = {}
for l in open('nginx_access.log'):
try:
ip, event = l.split(' - - ')
except ValueError:
continue