No se como lo estés ejecutando.
Primero te recomiendo usar el pequeño IDE que te instala python en windows.
Pero si lo quieres hacer desde la consola no olvides
añadir python al path. Y después colocate en el directorio donde tienes tu script (obviamente desde la terminal) y después ejecutas `python tu_script.py` (cambia tu_script.py con el nombre de tu script y sin los ``). Puedes autocompletar las rutas usando tab en la terminal, para que sea mas cómodo moverte.
Otra cosa espero que estés usando python 2.x y no la versión 3 si no eso nunca te va a correr. A si me funciono este script.
Código Python:
Ver original#!/usr/bin/python
import urllib2
import re
response00 = urllib2.urlopen('http://207.188.250.101/web/guest/es/websys/status/getUnificationCounter.cgi')
response01 = urllib2.urlopen('http://207.188.250.101/web/guest/es/websys/status/getUnificationCounter.cgi')
print '#############################################'
print '#####[ RICOH COUNTERS BY MADELINE]#########'
print '#############################################'
html = response00.read()
for lines in html.split('/tr'):
if "Total" in lines:
item1 = re.match( r'(.*)Total(.*) nowrap>(.*)</td>(.*)', lines, re.M|re.I)
print "[*] - Device Name: RICOH aficio MP 1600"
print "[*] - Location: Multiquimica Dominicana"
print "[*] - Machine ID: L6806240067"
print "[*] - TOTAL COUNT: " + item1.group(3)
print '#############################################'
break
#print '========================================================================'
html = response01.read()
for lines in html.split('/tr'):
if "Total" in lines:
item1 = re.match( r'(.*)Total(.*) nowrap>(.*)</td>(.*)', lines, re.M|re.I)
print "[*] - Device Name: RICOH aficio MP 1600"
print "[*] - Location: Doperco S.A."
print "[*] - Machine ID: L6877240014"
print "[*] - TOTAL COUNT: " + item1.group(3)
print '#############################################'
break