Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

14 řádky
353 B

  1. """
  2. Basic HTTP server to receive and save gps positions sent by Arduino GPS Tracker
  3. """
  4. import api
  5. if __name__ == "__main__":
  6. # Use python built-in WSGI reference implemention to run a web server
  7. from wsgiref.simple_server import make_server
  8. print('Starting web server...')
  9. srv = make_server('localhost', 8080, api.create())
  10. srv.serve_forever()