<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Spythons's Weblog</title>
	<atom:link href="http://spythons.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://spythons.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sun, 04 May 2008 01:48:59 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='spythons.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/7e90f230ceeb92a7d3ea6b11ec272865?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Spythons's Weblog</title>
		<link>http://spythons.wordpress.com</link>
	</image>
			<item>
		<title>Port Scanner Code</title>
		<link>http://spythons.wordpress.com/2008/05/04/port-scanner-code/</link>
		<comments>http://spythons.wordpress.com/2008/05/04/port-scanner-code/#comments</comments>
		<pubDate>Sun, 04 May 2008 01:47:21 +0000</pubDate>
		<dc:creator>spythons</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spythons.wordpress.com/?p=8</guid>
		<description><![CDATA[And here it is
#!/python24
import socket
host = raw_input(&#8220;What is the IP? &#8220;)
port0 = raw_input(&#8220;What is the starting port? &#8220;)
port1 = raw_input(&#8220;What is the finishing port? &#8220;)
output = raw_input(&#8220;What shall the log output file be called? &#8220;)
port = port0
print &#8220;Scanning ports&#8230;&#8221;
z = open(output + &#8220;.log&#8221;, &#8220;a&#8221;)
z.write(&#8220;Scan result: &#8220;)
z.close()
while int(port) &#60;= int(port1):
   try:
    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spythons.wordpress.com&blog=3526425&post=8&subd=spythons&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>And here it is</p>
<p>#!/python24<br />
import socket<br />
host = raw_input(&#8220;What is the IP? &#8220;)<br />
port0 = raw_input(&#8220;What is the starting port? &#8220;)<br />
port1 = raw_input(&#8220;What is the finishing port? &#8220;)<br />
output = raw_input(&#8220;What shall the log output file be called? &#8220;)<br />
port = port0<br />
print &#8220;Scanning ports&#8230;&#8221;<br />
z = open(output + &#8220;.log&#8221;, &#8220;a&#8221;)<br />
z.write(&#8220;Scan result: &#8220;)<br />
z.close()<br />
while int(port) &lt;= int(port1):<br />
   try:<br />
      s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)<br />
      s.connect((host, int(port)))<br />
      z = open(output + &#8220;.log&#8221;, &#8220;a&#8221;)<br />
      z.write(str(port) + &#8221; is open.  \n&#8221;)<br />
      z.close()<br />
      s.close()<br />
      print port<br />
      port = int(port) + 1<br />
   except socket.error:<br />
      z = open(output + &#8220;.log&#8221;, &#8220;a&#8221;)<br />
      z.write(&#8220;Port: &#8221; + str(port) + &#8221; is closed.  &#8220;)<br />
      z.close()<br />
      s.close()<br />
      print port<br />
      port = int(port) + 1</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/spythons.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/spythons.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spythons.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spythons.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spythons.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spythons.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spythons.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spythons.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spythons.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spythons.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spythons.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spythons.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spythons.wordpress.com&blog=3526425&post=8&subd=spythons&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://spythons.wordpress.com/2008/05/04/port-scanner-code/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36165a2ab3d7ebd064b13916b3ea5e48?s=96&#38;d=identicon" medium="image">
			<media:title type="html">spythons</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello World in VPython</title>
		<link>http://spythons.wordpress.com/2008/04/23/hello-world-in-vpython/</link>
		<comments>http://spythons.wordpress.com/2008/04/23/hello-world-in-vpython/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 20:05:45 +0000</pubDate>
		<dc:creator>spythons</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spythons.wordpress.com/?p=6</guid>
		<description><![CDATA[Since my video wasn&#8217;t very clear, here is the code for &#8220;Hello World in VPython&#8221;

from visual.text import *
# At present, VPython supports only numbers and uppercase characters. Other characters will be displayed as *
scene.title = &#8220;Hello World&#8221; #from the scene module it used the title function
# Here goes the hello world text
text(pos=(0,2,0), string=&#8217;PYTHON&#8217;, color=color.green, depth=0.3, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spythons.wordpress.com&blog=3526425&post=6&subd=spythons&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Since my video wasn&#8217;t very clear, here is the code for &#8220;Hello World in VPython&#8221;</p>
<blockquote><p>
from visual.text import *</p>
<p># At present, VPython supports only numbers and uppercase characters. Other characters will be displayed as *</p>
<p>scene.title = &#8220;Hello World&#8221; #from the scene module it used the title function<br />
# Here goes the hello world text<br />
text(pos=(0,2,0), string=&#8217;PYTHON&#8217;, color=color.green, depth=0.3, justify=&#8217;center&#8217;)<br />
text(pos=(0,4,0), string=&#8217;WELCOME TO THE WORLD OF&#8217;, color=color.orange, depth=0.3, justify=&#8217;center&#8217;)</p>
<p># Pos means Position in xyz format
</p></blockquote>
<p>Hold right click to spin it, and hold both left and right click to zoom in and out.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/spythons.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/spythons.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spythons.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spythons.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spythons.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spythons.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spythons.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spythons.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spythons.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spythons.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spythons.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spythons.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spythons.wordpress.com&blog=3526425&post=6&subd=spythons&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://spythons.wordpress.com/2008/04/23/hello-world-in-vpython/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36165a2ab3d7ebd064b13916b3ea5e48?s=96&#38;d=identicon" medium="image">
			<media:title type="html">spythons</media:title>
		</media:content>
	</item>
		<item>
		<title>Forums</title>
		<link>http://spythons.wordpress.com/2008/04/20/forums/</link>
		<comments>http://spythons.wordpress.com/2008/04/20/forums/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 01:46:44 +0000</pubDate>
		<dc:creator>spythons</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spythons.wordpress.com/?p=4</guid>
		<description><![CDATA[My new forums are up,  You can visit them at spythons.freeforums.org
~Mr. Python
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spythons.wordpress.com&blog=3526425&post=4&subd=spythons&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>My new forums are up,  You can visit them at spythons.freeforums.org</p>
<p>~Mr. Python</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/spythons.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/spythons.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spythons.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spythons.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spythons.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spythons.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spythons.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spythons.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spythons.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spythons.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spythons.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spythons.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spythons.wordpress.com&blog=3526425&post=4&subd=spythons&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://spythons.wordpress.com/2008/04/20/forums/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36165a2ab3d7ebd064b13916b3ea5e48?s=96&#38;d=identicon" medium="image">
			<media:title type="html">spythons</media:title>
		</media:content>
	</item>
		<item>
		<title>New Site</title>
		<link>http://spythons.wordpress.com/2008/04/19/hello-world/</link>
		<comments>http://spythons.wordpress.com/2008/04/19/hello-world/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 20:27:18 +0000</pubDate>
		<dc:creator>spythons</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This is my new website that is maintained and hosted by WordPress,  I will be publishing an article every week.  Check back often!
~Mr. Python
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spythons.wordpress.com&blog=3526425&post=1&subd=spythons&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is my new website that is maintained and hosted by WordPress,  I will be publishing an article every week.  Check back often!</p>
<p>~Mr. Python</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/spythons.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/spythons.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spythons.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spythons.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spythons.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spythons.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spythons.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spythons.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spythons.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spythons.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spythons.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spythons.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spythons.wordpress.com&blog=3526425&post=1&subd=spythons&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://spythons.wordpress.com/2008/04/19/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36165a2ab3d7ebd064b13916b3ea5e48?s=96&#38;d=identicon" medium="image">
			<media:title type="html">spythons</media:title>
		</media:content>
	</item>
	</channel>
</rss>