Guest User

Untitled

a guest
Jul 17th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1.  
  2. if __name__ == "__main__":
  3.     from wsgiref import simple_server
  4.     server = simple_server.make_server('localhost',8001,application)
  5.     server.serve_forever()
Add Comment
Please, Sign In to add comment