diff --git a/sandboxgamemaker.py b/sandboxgamemaker.py new file mode 100644 index 0000000..eee8405 --- /dev/null +++ b/sandboxgamemaker.py @@ -0,0 +1,9 @@ +#!/usr/bin/python +import urllib2 +import re +h=urllib2.urlopen("http://www.sandboxgamemaker.com/free-game-maker-downloads").read() +f=re.compile("Platinum Arts Sandbox Free 3D Game Maker (?P[\d\.]+)") +m=f.finditer(h) +for x in m: + v = x.group("version") + print "%s"%(v,v) diff --git a/update.sh b/update.sh index 7fcb927..2b92670 100644 --- a/update.sh +++ b/update.sh @@ -9,3 +9,4 @@ python nikki.py > nikki.html 2> nikki.log python legends.py > legends.html 2> legends.log python the-powder-toy.py > the-powder-toy.html 2> the-powder-toy.log python tide.py > tide.html 2> tide.log +python sandboxgamemaker.py > sandboxgamemaker.html 2> sandboxgamemaker.log