Skip to content Skip to sidebar Skip to footer
Showing posts with the label Simplehttpserver

Python Simplehttpserver: Change Response Header

I use python's SimpleHTTPServer for tests applications. Now for the test I need to change in th… Read more Python Simplehttpserver: Change Response Header

Simple Http Server Does Not Work When Converted To Exe

I wrote a simple python http server to serve the files(folders) of the present working directory. i… Read more Simple Http Server Does Not Work When Converted To Exe

How To Start Python Simplehttpserver On Windows 10

I recently bought a Windows 10 machine and now I want to run a server locally for testing a webpage… Read more How To Start Python Simplehttpserver On Windows 10

Processing Simultaneous/asynchronous Requests With Python Basehttpserver

I've set up a threaded (with Python threads) HTTP server by creating a class that inherits from… Read more Processing Simultaneous/asynchronous Requests With Python Basehttpserver

Why Does A Background Task Block The Response In Simplehttpserver?

I'm writing a simple browser-based front end that should be able to launch a background task an… Read more Why Does A Background Task Block The Response In Simplehttpserver?

SimpleHTTPServer Add Default.htm Default.html To Index Files

I always use $ python -m SimpleHTTPServer for fast local static web testing, it works great with in… Read more SimpleHTTPServer Add Default.htm Default.html To Index Files