<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Linux Ask! &#187; Python</title>
	<atom:link href="http://www.linuxask.com/topics/programming/python/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linuxask.com</link>
	<description>Linux Ask! is a Q &#38; A web site specific for Linux related questions such as how to use common Linux commands.</description>
	<lastBuildDate>Wed, 08 Sep 2010 16:01:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to sort a list in Python?</title>
		<link>http://www.linuxask.com/questions/how-to-sort-a-list-in-python</link>
		<comments>http://www.linuxask.com/questions/how-to-sort-a-list-in-python#comments</comments>
		<pubDate>Thu, 01 Jul 2010 17:24:26 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1809</guid>
		<description><![CDATA[How to sort a list in Python?
Answer:
Use the sorted method.
list = [3, 2, 1]
print sorted(list)

It will give:
[1, 2, 3]


Related posts:List 10 most often used commands
How to debug in Python?
How to perform syntax check for Python program



Related posts:<ol><li><a href='http://www.linuxask.com/questions/list-10-most-often-used-commands' rel='bookmark' title='Permanent Link: List 10 most often used commands'>List 10 most often used commands</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-debug-in-python' rel='bookmark' title='Permanent Link: How to debug in Python?'>How to debug in Python?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-perform-syntax-check-for-python-program' rel='bookmark' title='Permanent Link: How to perform syntax check for Python program'>How to perform syntax check for Python program</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to sort a list in Python?</p>
<p><strong>Answer:</strong></p>
<p>Use the <strong>sorted</strong> method.</p>
<pre><code>list = [3, 2, 1]
print sorted(list)
</code></pre>
<p>It will give:</p>
<p><code>[1, 2, 3]</code></p>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/list-10-most-often-used-commands' rel='bookmark' title='Permanent Link: List 10 most often used commands'>List 10 most often used commands</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-debug-in-python' rel='bookmark' title='Permanent Link: How to debug in Python?'>How to debug in Python?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-perform-syntax-check-for-python-program' rel='bookmark' title='Permanent Link: How to perform syntax check for Python program'>How to perform syntax check for Python program</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-sort-a-list-in-python/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is &#8220;The Zen of Python&#8221;?</title>
		<link>http://www.linuxask.com/questions/what-is-the-zen-of-python</link>
		<comments>http://www.linuxask.com/questions/what-is-the-zen-of-python#comments</comments>
		<pubDate>Sat, 29 May 2010 14:21:55 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1679</guid>
		<description><![CDATA[What is "The Zen of Python"?
Answer:
Try the following command in shell:
# python -c "import this"
And it will print out...
The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to [...]


Related posts:<ol><li><a href='http://www.linuxask.com/questions/quick-and-easy-smtp-server-with-python' rel='bookmark' title='Permanent Link: Quick and easy SMTP server with Python'>Quick and easy SMTP server with Python</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-perform-syntax-check-for-python-program' rel='bookmark' title='Permanent Link: How to perform syntax check for Python program'>How to perform syntax check for Python program</a></li>
<li><a href='http://www.linuxask.com/questions/installing-python-modules-with-easy_install' rel='bookmark' title='Permanent Link: Installing Python modules with easy_install'>Installing Python modules with easy_install</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>What is "The Zen of Python"?</p>
<p><strong>Answer:</strong></p>
<p>Try the following command in shell:</p>
<p><code># python -c "import this"</code></p>
<p>And it will print out...</p>
<pre><code>The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
</code></pre>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/quick-and-easy-smtp-server-with-python' rel='bookmark' title='Permanent Link: Quick and easy SMTP server with Python'>Quick and easy SMTP server with Python</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-perform-syntax-check-for-python-program' rel='bookmark' title='Permanent Link: How to perform syntax check for Python program'>How to perform syntax check for Python program</a></li>
<li><a href='http://www.linuxask.com/questions/installing-python-modules-with-easy_install' rel='bookmark' title='Permanent Link: Installing Python modules with easy_install'>Installing Python modules with easy_install</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/what-is-the-zen-of-python/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to debug in Python?</title>
		<link>http://www.linuxask.com/questions/how-to-debug-in-python</link>
		<comments>http://www.linuxask.com/questions/how-to-debug-in-python#comments</comments>
		<pubDate>Sat, 22 May 2010 15:44:21 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1671</guid>
		<description><![CDATA[How to debug in Python?
Answer:
Assume you have a simple python script like:
a = 1
b = 2
c = a + b
print c

To enable debugging, add the following line at the top of the program
import pdb
and in the line you want to break, add
pdb.set_trace()
So the whole program become:
import pdb
a = 1
b = 2
pdb.set_trace()
c = a + b
print [...]


Related posts:<ol><li><a href='http://www.linuxask.com/questions/how-to-perform-syntax-check-for-python-program' rel='bookmark' title='Permanent Link: How to perform syntax check for Python program'>How to perform syntax check for Python program</a></li>
<li><a href='http://www.linuxask.com/questions/what-is-the-zen-of-python' rel='bookmark' title='Permanent Link: What is &#8220;The Zen of Python&#8221;?'>What is &#8220;The Zen of Python&#8221;?</a></li>
<li><a href='http://www.linuxask.com/questions/quick-and-easy-smtp-server-with-python' rel='bookmark' title='Permanent Link: Quick and easy SMTP server with Python'>Quick and easy SMTP server with Python</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to debug in Python?</p>
<p><strong>Answer:</strong></p>
<p>Assume you have a simple python script like:</p>
<pre><code>a = 1
b = 2
c = a + b
print c
</code></pre>
<p>To enable debugging, add the following line at the top of the program</p>
<p><code>import pdb</code></p>
<p>and in the line you want to break, add</p>
<p><code>pdb.set_trace()</code></p>
<p>So the whole program become:</p>
<pre><code>import pdb
a = 1
b = 2
pdb.set_trace()
c = a + b
print c
</code></pre>
<p>When you execute the script by <strong>python test.py</strong>, you will in the <strong>debug </strong>mode.</p>
<p><strong>Some useful commands:</strong></p>
<p>1. Print variables: <strong>p a</strong><br />
2. Step over: <strong>n</strong><br />
3. Continue: <strong>c</strong><br />
4. Quit: <strong>q</strong></p>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/how-to-perform-syntax-check-for-python-program' rel='bookmark' title='Permanent Link: How to perform syntax check for Python program'>How to perform syntax check for Python program</a></li>
<li><a href='http://www.linuxask.com/questions/what-is-the-zen-of-python' rel='bookmark' title='Permanent Link: What is &#8220;The Zen of Python&#8221;?'>What is &#8220;The Zen of Python&#8221;?</a></li>
<li><a href='http://www.linuxask.com/questions/quick-and-easy-smtp-server-with-python' rel='bookmark' title='Permanent Link: Quick and easy SMTP server with Python'>Quick and easy SMTP server with Python</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-debug-in-python/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick and easy SMTP server with Python</title>
		<link>http://www.linuxask.com/questions/quick-and-easy-smtp-server-with-python</link>
		<comments>http://www.linuxask.com/questions/quick-and-easy-smtp-server-with-python#comments</comments>
		<pubDate>Thu, 22 Apr 2010 14:01:24 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1597</guid>
		<description><![CDATA[Quick and easy SMTP server with Python
Answer:
You can start a Python SMTP server, with only a single command, without installing any additional software in modern Linux.
E.g.
 sudo python -m smtpd -n -c DebuggingServer localhost:25


Related posts:Test if local SMTP server is running
Installing Python modules with easy_install
Install mlocate for quick file search in Linux



Related posts:<ol><li><a href='http://www.linuxask.com/questions/test-if-local-smtp-server-is-running' rel='bookmark' title='Permanent Link: Test if local SMTP server is running'>Test if local SMTP server is running</a></li>
<li><a href='http://www.linuxask.com/questions/installing-python-modules-with-easy_install' rel='bookmark' title='Permanent Link: Installing Python modules with easy_install'>Installing Python modules with easy_install</a></li>
<li><a href='http://www.linuxask.com/questions/install-mlocate-for-quick-file-search-in-linux' rel='bookmark' title='Permanent Link: Install mlocate for quick file search in Linux'>Install mlocate for quick file search in Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Quick and easy SMTP server with Python</p>
<p><strong>Answer:</strong></p>
<p>You can start a Python SMTP server, with only a single command, without installing any additional software in modern Linux.</p>
<p>E.g.</p>
<p><code> sudo python -m smtpd -n -c DebuggingServer localhost:25</code></p>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/test-if-local-smtp-server-is-running' rel='bookmark' title='Permanent Link: Test if local SMTP server is running'>Test if local SMTP server is running</a></li>
<li><a href='http://www.linuxask.com/questions/installing-python-modules-with-easy_install' rel='bookmark' title='Permanent Link: Installing Python modules with easy_install'>Installing Python modules with easy_install</a></li>
<li><a href='http://www.linuxask.com/questions/install-mlocate-for-quick-file-search-in-linux' rel='bookmark' title='Permanent Link: Install mlocate for quick file search in Linux'>Install mlocate for quick file search in Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/quick-and-easy-smtp-server-with-python/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert string to integer in Python</title>
		<link>http://www.linuxask.com/questions/convert-string-to-integer-in-python</link>
		<comments>http://www.linuxask.com/questions/convert-string-to-integer-in-python#comments</comments>
		<pubDate>Sat, 17 Apr 2010 08:03:33 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1579</guid>
		<description><![CDATA[Convert string to integer in Python
Answer:
You can use the built-in int() type constructor, e.g.
 int('123') == 123



Related posts:Convert IP address to unsigned integer in MySQL
How to perform syntax check for Python program
Quick and easy SMTP server with Python



Related posts:<ol><li><a href='http://www.linuxask.com/questions/convert-ip-address-to-unsigned-integer-in-mysql' rel='bookmark' title='Permanent Link: Convert IP address to unsigned integer in MySQL'>Convert IP address to unsigned integer in MySQL</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-perform-syntax-check-for-python-program' rel='bookmark' title='Permanent Link: How to perform syntax check for Python program'>How to perform syntax check for Python program</a></li>
<li><a href='http://www.linuxask.com/questions/quick-and-easy-smtp-server-with-python' rel='bookmark' title='Permanent Link: Quick and easy SMTP server with Python'>Quick and easy SMTP server with Python</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Convert string to integer in Python</p>
<p><strong>Answer:</strong></p>
<p>You can use the built-in <strong>int()</strong> type constructor, e.g.</p>
<pre><code> int('123') == 123
</code></pre>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/convert-ip-address-to-unsigned-integer-in-mysql' rel='bookmark' title='Permanent Link: Convert IP address to unsigned integer in MySQL'>Convert IP address to unsigned integer in MySQL</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-perform-syntax-check-for-python-program' rel='bookmark' title='Permanent Link: How to perform syntax check for Python program'>How to perform syntax check for Python program</a></li>
<li><a href='http://www.linuxask.com/questions/quick-and-easy-smtp-server-with-python' rel='bookmark' title='Permanent Link: Quick and easy SMTP server with Python'>Quick and easy SMTP server with Python</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/convert-string-to-integer-in-python/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Python modules with easy_install</title>
		<link>http://www.linuxask.com/questions/installing-python-modules-with-easy_install</link>
		<comments>http://www.linuxask.com/questions/installing-python-modules-with-easy_install#comments</comments>
		<pubDate>Sun, 07 Mar 2010 15:17:34 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1459</guid>
		<description><![CDATA[Installing Python modules with easy_install
Answer:
Install Python modules cannot be easier with easy_install.
To use easy_install, you can use apt-get to install the "python-setuptools" package
# sudo apt-get install python-setuptools
Then you can use easy_install to install the module you want, e.g. pymongo
# sudo easy_install pymongo


Related posts:Quick and easy SMTP server with Python
How to perform syntax check for Python [...]


Related posts:<ol><li><a href='http://www.linuxask.com/questions/quick-and-easy-smtp-server-with-python' rel='bookmark' title='Permanent Link: Quick and easy SMTP server with Python'>Quick and easy SMTP server with Python</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-perform-syntax-check-for-python-program' rel='bookmark' title='Permanent Link: How to perform syntax check for Python program'>How to perform syntax check for Python program</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-remove-install-cpan-modules' rel='bookmark' title='Permanent Link: How to remove install CPAN modules?'>How to remove install CPAN modules?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Installing Python modules with easy_install</p>
<p><strong>Answer:</strong></p>
<p>Install Python modules cannot be easier with <strong>easy_install</strong>.</p>
<p>To use <strong>easy_install</strong>, you can use apt-get to install the <strong>"python-setuptools"</strong> package</p>
<p><code># sudo apt-get install python-setuptools</code></p>
<p>Then you can use<strong> easy_install </strong>to install the module you want, e.g. <strong>pymongo</strong></p>
<p><code># sudo easy_install pymongo</code></p>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/quick-and-easy-smtp-server-with-python' rel='bookmark' title='Permanent Link: Quick and easy SMTP server with Python'>Quick and easy SMTP server with Python</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-perform-syntax-check-for-python-program' rel='bookmark' title='Permanent Link: How to perform syntax check for Python program'>How to perform syntax check for Python program</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-remove-install-cpan-modules' rel='bookmark' title='Permanent Link: How to remove install CPAN modules?'>How to remove install CPAN modules?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/installing-python-modules-with-easy_install/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to perform syntax check for Python program</title>
		<link>http://www.linuxask.com/questions/how-to-perform-syntax-check-for-python-program</link>
		<comments>http://www.linuxask.com/questions/how-to-perform-syntax-check-for-python-program#comments</comments>
		<pubDate>Mon, 01 Mar 2010 13:26:16 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1437</guid>
		<description><![CDATA[How to perform syntax check for Python program
Answer:
Assume you have a simple Python script hello.py, you want to perform syntax check. You can use the following method
# python -c 'import hello'

Traceback (most recent call last):
  File "", line 1, in 
  File "hello.py", line 1
    echo "Hello, World!"

If there is [...]


Related posts:<ol><li><a href='http://www.linuxask.com/questions/how-to-perform-syntax-check-for-perl-program' rel='bookmark' title='Permanent Link: How to perform syntax check for Perl program'>How to perform syntax check for Perl program</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-perform-syntax-check-on-a-bash-script' rel='bookmark' title='Permanent Link: How to perform syntax check on a bash script?'>How to perform syntax check on a bash script?</a></li>
<li><a href='http://www.linuxask.com/questions/perform-syntax-check-to-php-files' rel='bookmark' title='Permanent Link: Perform syntax check to PHP files'>Perform syntax check to PHP files</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to perform syntax check for Python program</p>
<p><strong>Answer:</strong></p>
<p>Assume you have a simple Python script<strong> hello.py</strong>, you want to perform syntax check. You can use the following method</p>
<pre><code># python -c 'import hello'

Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "hello.py", line 1
    echo "Hello, World!"
</code></pre>
<p>If there is any syntax error, it will prompt out to the screen.</p>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/how-to-perform-syntax-check-for-perl-program' rel='bookmark' title='Permanent Link: How to perform syntax check for Perl program'>How to perform syntax check for Perl program</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-perform-syntax-check-on-a-bash-script' rel='bookmark' title='Permanent Link: How to perform syntax check on a bash script?'>How to perform syntax check on a bash script?</a></li>
<li><a href='http://www.linuxask.com/questions/perform-syntax-check-to-php-files' rel='bookmark' title='Permanent Link: Perform syntax check to PHP files'>Perform syntax check to PHP files</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-perform-syntax-check-for-python-program/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Serve current directory using HTTP with a single command</title>
		<link>http://www.linuxask.com/questions/serve-current-directory-using-http-with-a-single-command</link>
		<comments>http://www.linuxask.com/questions/serve-current-directory-using-http-with-a-single-command#comments</comments>
		<pubDate>Sun, 24 Jan 2010 05:10:08 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=955</guid>
		<description><![CDATA[Serve current directory using HTTP with a single command
Answer:
Sometimes, you want to share some files in a given directory in your Linux system to other people, you might consider setup a NFS, Samba, FTP or so.
However, the easiest method is to export the directory using HTTP, with the help of Python.
E.g.
 # cd /data/
python -m [...]


Related posts:<ol><li><a href='http://www.linuxask.com/questions/how-to-get-the-ip-address-assigned-to-eth0-by-a-single-command' rel='bookmark' title='Permanent Link: How to get the IP address assigned to eth0 by a single command'>How to get the IP address assigned to eth0 by a single command</a></li>
<li><a href='http://www.linuxask.com/questions/quick-and-easy-smtp-server-with-python' rel='bookmark' title='Permanent Link: Quick and easy SMTP server with Python'>Quick and easy SMTP server with Python</a></li>
<li><a href='http://www.linuxask.com/questions/rename-directory-in-linux' rel='bookmark' title='Permanent Link: Rename directory in Linux'>Rename directory in Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Serve current directory using HTTP with a single command</p>
<p><strong>Answer:</strong></p>
<p>Sometimes, you want to share some files in a given directory in your Linux system to other people, you might consider setup a NFS, Samba, FTP or so.</p>
<p>However, the easiest method is to export the directory using HTTP, with the help of Python.</p>
<p>E.g.</p>
<pre><code> # cd /data/
python -m SimpleHTTPServer
Serving HTTP on 0.0.0.0 port 8000 ...
</code></pre>
<p>Now people can access the web server at port 8000 of your system's IP address, to access the  <strong>/data </strong>directory. </p>


<p>Related posts:<ol><li><a href='http://www.linuxask.com/questions/how-to-get-the-ip-address-assigned-to-eth0-by-a-single-command' rel='bookmark' title='Permanent Link: How to get the IP address assigned to eth0 by a single command'>How to get the IP address assigned to eth0 by a single command</a></li>
<li><a href='http://www.linuxask.com/questions/quick-and-easy-smtp-server-with-python' rel='bookmark' title='Permanent Link: Quick and easy SMTP server with Python'>Quick and easy SMTP server with Python</a></li>
<li><a href='http://www.linuxask.com/questions/rename-directory-in-linux' rel='bookmark' title='Permanent Link: Rename directory in Linux'>Rename directory in Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/serve-current-directory-using-http-with-a-single-command/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
