Skip to content

Instantly share code, notes, and snippets.

@marcellmars
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcellmars/25d0573b94e13a9d73ab to your computer and use it in GitHub Desktop.
Save marcellmars/25d0573b94e13a9d73ab to your computer and use it in GitHub Desktop.
how many downloads from ge.tt
# from http://ge.tt/notifications Save as text into 'koliko_puta'
import re
sum([int(re.search("downloaded (\d.*)( time.*)", b).groups()[0]) for b in [b for b in open("koliko_puta").readlines() if b.find("time") > 0]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment