This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import urllib | |
| import urllib2 | |
| try: | |
| import json | |
| except: | |
| import simplejson as json | |
| # First, Get your API Key for free from: api.animetrics.com | |
| # See at the very below section for HOWTO. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import re, fileinput | |
| import pyPEG | |
| from pyPEG import parse, parseLine | |
| from pyPEG import keyword, _and, _not, ignore | |
| import datetime | |
| ## Taken from https://gist.github.com/bertspaan/3059017 and translated to English. It is Working well BUT if you find any errors, please comment! | |
| numbers = [ | |
| "zero", |