Tagged Questions
5
votes
5answers
845 views
Python Desktop Application with the Browser as an interface?
I want to create an application that runs on the users computer, a stand-alone application, with installation and what-not, but I want the interface to be a browser, either internal and displayed as ...
3
votes
3answers
1k views
How to serve any file type with Python's BaseHTTPRequestHandler
Consider the following example:
import string,cgi,time
from os import curdir, sep
from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
class MyHandler(BaseHTTPRequestHandler):
def ...
1
vote
2answers
80 views
serving logs via HTTP [closed]
Here is what i am trying to achieve: I have a few Linux servers that have my web App deployed on. Currently my development team access the web app, run their test cases and then SSH into my Linux ...
1
vote
4answers
443 views
How do I create an HTTP server in Python using the first available port?
I want to avoid hardcoding the port number as in the following:
httpd = make_server('', 8000, simple_app)
The reason I'm creating the server this way is that I want to use it as a 'kernel' for an ...