1 2 3 4 5 6 7 8 9
#!/usr/bin/python2 """script used to run the webserver""" import sys from photoblaster.server import Server server = Server() if __name__ == "__main__": server.run_wsgi()