<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Python Trick: Really Simple HTTP Server</title>
	<link>http://www.blendedtechnologies.com/python-trick-really-little-http-server/220</link>
	<description>Established January 2005</description>
	<pubDate>Sat, 04 Feb 2012 07:49:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0</generator>

	<item>
		<title>by: Sidh</title>
		<link>http://www.blendedtechnologies.com/python-trick-really-little-http-server/220#comment-30198</link>
		<pubDate>Wed, 16 Dec 2009 19:13:23 +0000</pubDate>
		<guid>http://www.blendedtechnologies.com/python-trick-really-little-http-server/220#comment-30198</guid>
					<description>A minimal HTTP Server using python:

Create a file named pws.sh:
#!/usr/bin/env bash
python -m SimpleHTTPServer 80

Change the permission:
chmod 700 pws.sh

And run as:
nohup ./pws.sh &amp;#38;

It runs a web server on the current directory on port 80.</description>
		<content:encoded><![CDATA[<p>A minimal HTTP Server using python:</p>
<p>Create a file named pws.sh:<br />
#!/usr/bin/env bash<br />
python -m SimpleHTTPServer 80</p>
<p>Change the permission:<br />
chmod 700 pws.sh</p>
<p>And run as:<br />
nohup ./pws.sh &amp;</p>
<p>It runs a web server on the current directory on port 80.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Kathy</title>
		<link>http://www.blendedtechnologies.com/python-trick-really-little-http-server/220#comment-29834</link>
		<pubDate>Fri, 23 Jan 2009 15:18:45 +0000</pubDate>
		<guid>http://www.blendedtechnologies.com/python-trick-really-little-http-server/220#comment-29834</guid>
					<description>I was just talking with a co-worker about how I needed a bar code scanner like (Albertson's ) use to use when shopping for groceries.  It would tally your grocery list, add the tax and let you know how much you have spent.  I just need to be able to print a receipt when I get home or download to my budget spreadsheet.

This is so great it's exactly what I need.  Signing into Ebay and looking for a scanner now.

Great Job!!</description>
		<content:encoded><![CDATA[<p>I was just talking with a co-worker about how I needed a bar code scanner like (Albertson&#8217;s ) use to use when shopping for groceries.  It would tally your grocery list, add the tax and let you know how much you have spent.  I just need to be able to print a receipt when I get home or download to my budget spreadsheet.</p>
<p>This is so great it&#8217;s exactly what I need.  Signing into Ebay and looking for a scanner now.</p>
<p>Great Job!!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Greg - CEO/Founder</title>
		<link>http://www.blendedtechnologies.com/python-trick-really-little-http-server/220#comment-29675</link>
		<pubDate>Fri, 15 Aug 2008 00:34:05 +0000</pubDate>
		<guid>http://www.blendedtechnologies.com/python-trick-really-little-http-server/220#comment-29675</guid>
					<description>Matt, that's really clever.  I really hope I remember that next time I need to quickly share a file.</description>
		<content:encoded><![CDATA[<p>Matt, that&#8217;s really clever.  I really hope I remember that next time I need to quickly share a file.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Matt Dugan</title>
		<link>http://www.blendedtechnologies.com/python-trick-really-little-http-server/220#comment-29674</link>
		<pubDate>Fri, 15 Aug 2008 00:08:17 +0000</pubDate>
		<guid>http://www.blendedtechnologies.com/python-trick-really-little-http-server/220#comment-29674</guid>
					<description>This isn't nearly as feature rich as yours, but I have been using it for years.  Typically, I run this when I just want to quickly share a directory to someone on the network.  I make this script executable called wsh (web server here) and put it on my local path:

#!/bin/sh
python -c &quot;import SimpleHTTPServer;SimpleHTTPServer.test()&quot;

It runs a web server on the current directory on port 8000.  Handy :-)</description>
		<content:encoded><![CDATA[<p>This isn&#8217;t nearly as feature rich as yours, but I have been using it for years.  Typically, I run this when I just want to quickly share a directory to someone on the network.  I make this script executable called wsh (web server here) and put it on my local path:</p>
<p>#!/bin/sh<br />
python -c &#8220;import SimpleHTTPServer;SimpleHTTPServer.test()&#8221;</p>
<p>It runs a web server on the current directory on port 8000.  Handy <img src='http://www.blendedtechnologies.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: jeremy</title>
		<link>http://www.blendedtechnologies.com/python-trick-really-little-http-server/220#comment-29673</link>
		<pubDate>Thu, 07 Aug 2008 06:28:46 +0000</pubDate>
		<guid>http://www.blendedtechnologies.com/python-trick-really-little-http-server/220#comment-29673</guid>
					<description>cherrypy already does this: http://www.cherrypy.org/
it's like the WEBrick of python.</description>
		<content:encoded><![CDATA[<p>cherrypy already does this: <a href='http://www.cherrypy.org/' rel='nofollow'>http://www.cherrypy.org/</a><br />
it&#8217;s like the WEBrick of python.
</p>
]]></content:encoded>
				</item>
</channel>
</rss>

