como realizon un publisher con python
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#3
import urllib2 contents = urllib2.urlopen("https://www.google.com/").read() print(contents)
#4
sudo apt-get install python-bottle
Luego con el siguiente programa te puedes conectar a el Raspberry Pi desde un navegador que este dentro de tu red:
from bottle import route, run, template from datetime import datetime @route('/') def index(name='time'): dt = datetime.now() time = "{:%Y-%m-%d %H:%M:%S}".format(dt) return template('<b>Pi thinks the date/time is: {{t}}</b>', t=time) run(host='192.168.1.16', port=80)
Por último corres el programa con privilegios de super usuario:
sudo python bottle_prueba.py
Coloca la siguiente dirección en tu navegador y ya puedes acceder a tu servidor web: 192.168.1.16