Posts

Showing posts from November 3, 2013

Simple HTTP Web Server using Python

Image
Basic HTTP Web Server using Python Python make use of SimpleHTTPServer  — Simple HTTP request handler to start for starting a New Web Server to serve the file relative to current directory. We can setup this Simple Web Server within seconds without any effort. Note :  Before moving ahead, I just want to let you know that this functionality is available only with Version 2.4 or Later. $” python -m http.server [port]” for Python 3. Installation and Verification : Install python, if you have don’t have installed, then please install. //Redhat/Centos/Fedora # yum install python OR   #rpm –ivh python-version.rpm //On Ubuntu #sudo apt-get install python //Verify the Installation(Redhat/Centos) #yum list python                                     ...