<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Python Forum RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest threads from the 'Python' forum at Programmer's Heaven, excluding replies.</description>
    <language>en</language>
    <copyright>Copyright 2008 Programmers Heaven</copyright>
    <pubDate>Mon, 01 Dec 2008 19:37:37 -0700</pubDate>
    <lastBuildDate>Mon, 01 Dec 2008 19:37:37 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>Why does it return 0?</title>
      <link>http://www.programmersheaven.com/mb/python/381712/381712/why-does-it-return-0/</link>
      <description>&lt;pre class="sourcecode"&gt;def countErrors(secret, lettersGuessed, errors):

    if lettersGuessed == "":
        errors = errors + 0  
    else:
        subproblem = lettersGuessed[len(lettersGuessed)-1]
        others = lettersGuessed[0:len(lettersGuessed)-1]
        if subproblem in secret:
            errors = errors + 0
        else:
            errors = errors + 1
        print errors, secret, lettersGuessed, others, subproblem
        countErrors(secret, others, errors)
    return errors        
     
        
        

secret = "guinness"
lettersGuessed = "pnitwzg"
errors = 0
x = countErrors(secret, lettersGuessed, errors)
print x
           &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
Here's what it outputs:&lt;br /&gt;
&lt;br /&gt;
0 guinness pnitwzg pnitwz g&lt;br /&gt;
1 guinness pnitwz pnitw z&lt;br /&gt;
2 guinness pnitw pnit w&lt;br /&gt;
3 guinness pnit pni t&lt;br /&gt;
3 guinness pni pn i&lt;br /&gt;
3 guinness pn p n&lt;br /&gt;
4 guinness p  p&lt;br /&gt;
0&lt;br /&gt;
&lt;br /&gt;
I'm pretty new at this, but this just doesn't seem to make any sense. It does exactly what I want it to, except instead of returning 4, it returns 0.&lt;br /&gt;
&lt;br /&gt;</description>
      <pubDate>Mon, 10 Nov 2008 15:13:51 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>I'm pretty new to Python and i'm havin troubles</title>
      <link>http://www.programmersheaven.com/mb/python/381322/381322/im-pretty-new-to-python-and-im-havin-troubles/</link>
      <description>Ok I'm new to python since january.  i've read a intro book cover-to-cover and have written some code of my own, but i have a nerve-racking problem thats giving my a headache.  I can save a module just fine, but when i try to import it into another program it gives me a syntax error and highlights the middle "5" in the "Python 2.&lt;strong&gt;5&lt;/strong&gt;.5" at the top of the page.&lt;br /&gt;
&lt;br /&gt;
Please assist, what's going on and how can i fix it?&lt;br /&gt;</description>
      <pubDate>Thu, 23 Oct 2008 17:08:53 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>Hi i have a question about the python.</title>
      <link>http://www.programmersheaven.com/mb/python/376753/376753/hi-i-have-a-question-about-the-python/</link>
      <description>You are required to write a Python program which will solve system of linear equations with 3 unknowns&lt;br /&gt;
(to be entered by the user).&lt;br /&gt;
Your program should display a menu which will allow the user to choose whether he wants to (1)&lt;br /&gt;
coefficients (2) check whether the linear system can be solved using iteration (3) calculate and display the&lt;br /&gt;
required results using Gauss-Seidel (4) calculate and display the required results using Gauss-Jacobi&lt;br /&gt;
Note that in all cases, the outcomes of the iterations should be displayed. Also if the values of the&lt;br /&gt;
unknowns are not converging, your program should stop at the 15th iteration.&lt;br /&gt;</description>
      <pubDate>Thu, 02 Oct 2008 06:55:30 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>Source Code</title>
      <link>http://www.programmersheaven.com/mb/python/376371/376371/source-code/</link>
      <description>Hi &lt;br /&gt;
&lt;br /&gt;
Would anyone know where i can get the free source code for the python KeyLogger I want to study the code to create my own. Not to use as spyware.&lt;br /&gt;
&lt;br /&gt;
Thanks in advance.&lt;br /&gt;</description>
      <pubDate>Mon, 29 Sep 2008 07:00:13 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>Where can i find a free LISP software</title>
      <link>http://www.programmersheaven.com/mb/python/375363/375363/where-can-i-find-a-free-lisp-software/</link>
      <description>I was assigned to search for LISP software and make at least 5 programs.&lt;br /&gt;
&lt;br /&gt;
I have no idea with this. can anyone help me?&lt;br /&gt;
&lt;br /&gt;
thanks in adavance..&lt;br /&gt;
&lt;br /&gt;</description>
      <pubDate>Tue, 16 Sep 2008 06:34:53 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>timer property of python</title>
      <link>http://www.programmersheaven.com/mb/python/375301/375301/timer-property-of-python/</link>
      <description>good afternoon guys..&lt;br /&gt;
does anyone here know how to program a timer in python??&lt;br /&gt;
&lt;br /&gt;
i need a timer property to be set for my game application (which my instructor assigned us for our end-term requirement)&lt;br /&gt;
&lt;br /&gt;
help me pls..&lt;br /&gt;
&lt;br /&gt;
i know there are lots of brainy people out there..&lt;br /&gt;
&lt;br /&gt;
please help me..&lt;br /&gt;
&lt;br /&gt;
i would appreciate even a sample program of creating a timer in python using easygui module..&lt;br /&gt;
&lt;br /&gt;
thank you in advance..&lt;br /&gt;
&lt;br /&gt;
God bless....&lt;br /&gt;</description>
      <pubDate>Mon, 15 Sep 2008 02:31:31 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>Compiling Issue</title>
      <link>http://www.programmersheaven.com/mb/python/374922/374922/compiling-issue/</link>
      <description>Writing a simple ftp script, using PyInstaller to wrap up as exe, when it builds, I get a compile&amp;lt;&amp;gt; expected string without null bytes in the mf.py file. Pretty new to this, any help would be really appricated/&lt;br /&gt;
&lt;br /&gt;
Cheers &lt;br /&gt;</description>
      <pubDate>Fri, 05 Sep 2008 12:03:13 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>Free download Python ebooks</title>
      <link>http://www.programmersheaven.com/mb/python/374654/374654/free-download-python-ebooks/</link>
      <description>Dear Friends,&lt;br /&gt;
&lt;br /&gt;
You are free to download Python ebooks.&lt;br /&gt;
&lt;br /&gt;
apart from that AJAX, ASP.NET, VB.NET, SQL Server, PHP, JAVA, software, oracle, Unix, Google Adsense, Linus, SAP, Pearl and much more ebooks also available.&lt;br /&gt;
&lt;br /&gt;
Download from &lt;br /&gt;
&lt;a href="http://freedownload12.blogspot.com/"&gt;http://freedownload12.blogspot.com/&lt;/a&gt;&lt;br /&gt;</description>
      <pubDate>Fri, 29 Aug 2008 23:48:50 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>EMV Common Perso. Specification</title>
      <link>http://www.programmersheaven.com/mb/python/373260/373260/emv-common-perso-specification/</link>
      <description>Hello,&lt;br /&gt;
&lt;br /&gt;
I work in a smart card peronalization company. I am trying to convert character-delimited data to EMV CPS using python. Does anyone know how to go about doing this? I would appreciate any help. Thanks a lot.&lt;br /&gt;</description>
      <pubDate>Wed, 09 Jul 2008 02:50:58 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>EMV Common Perso. Specification</title>
      <link>http://www.programmersheaven.com/mb/python/373259/373259/emv-common-perso-specification/</link>
      <description>Hello,&lt;br /&gt;
&lt;br /&gt;
I work in a smart card peronalization company. I am trying to convert character-delimited data to EMV CPS using python. Does anyone know how to go about doing this? I would appreciate any help. Thanks a lot.&lt;br /&gt;</description>
      <pubDate>Wed, 09 Jul 2008 01:42:26 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>Why doesn't the loop work?</title>
      <link>http://www.programmersheaven.com/mb/python/373147/373147/why-doesnt-the-loop-work/</link>
      <description>Why doesn't the loop in the following code work?&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
#Finds out what numbers are prime.
primes = [2,3,5,7,11,13,17,19,23]
finish = int(raw_input("What number would you like to check to? "))
start = 24
while start &amp;gt;= finish:
    x = 0
    while start % primes[x] != 0:
        if IndexError:
            break
        else:
            x = x + 1
    else:
        primes.append[start]
    start = start + 1
print primes
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
When run, it just prints out the default set of primes after taking the number you want the program to check up to.&lt;br /&gt;
Swat spam before it fills your inbox!</description>
      <pubDate>Fri, 04 Jul 2008 16:22:36 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>Help with dir()</title>
      <link>http://www.programmersheaven.com/mb/python/373055/373055/help-with-dir/</link>
      <description>I'm new to Python and have the Python Reference Manual Release 2.5.2 as my only guide so far, but here's my problem:&lt;br /&gt;
&lt;br /&gt;
I've got a custom class 'Foo' with two functions - 'hello' and 'goodbye' that just print a string.&lt;br /&gt;
&lt;br /&gt;
I'm assigning the output of the dir() function to a variable and want to then perform a dir() on each index value of the first variable and Python doesn't like it.  Here's what I've got:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
a = dir()
print dir(a[0])
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
When I execute this the output is the generic classes and does not include the functions of my custom Foo class at all.  Now when I forget about assigning the output of the dir() to an array and just hard code dir(Foo) it works fine, returning my two functions.  I've noticed that the problem is related to the compiler reading it as a string or a 'literal' I guess it's called, because the output of these two commands is completely different:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
dir(Foo)
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
dir('Foo')
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
The first output without the quotes being the one I'm trying to get by an array variable of the entire generic dir() function alone.&lt;br /&gt;
&lt;br /&gt;
I've printed out the array for testing purposes and sure enough, index 0 is Foo so it should in theory work.&lt;br /&gt;
&lt;br /&gt;
Is there some kind of pickle method or function I need to perform to make dir(a[0]) work???&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
Navic</description>
      <pubDate>Tue, 01 Jul 2008 01:00:38 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>List files without extension</title>
      <link>http://www.programmersheaven.com/mb/python/372537/372537/list-files-without-extension/</link>
      <description>I'm fairly new to python, and I am trying to write a script that will write all the files in a directory to a text file, but only write the files that have a certain extension (.avi, .rmvb, .mkv etc.) and only print the filename without the extension. So video.avi would become video in the text file, and text.txt would be ignored completely. So far I have been able to list the directory using os.listdir, and write it to a text file, but haven't been able to show only certain extensions and show only the filename. What would be the best way of doing this?&lt;br /&gt;</description>
      <pubDate>Mon, 09 Jun 2008 10:09:39 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>Is it possible to return a variable and use it...?</title>
      <link>http://www.programmersheaven.com/mb/python/369892/369892/is-it-possible-to-return-a-variable-and-use-it/</link>
      <description>Hello all,&lt;br /&gt;
&lt;br /&gt;
Is it possible to return a variable and then use it like the following:&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
dir exp_1:
    while hen != "*"   
       sum = sum + hen
    return sum

dir exp_2:
   if sum &amp;gt;= total_needed:
     print "Profit can be made."
   else:
     print "Expect a loss."

total_needed = int(raw_input("What is the total eggs needed? "))
hen = int(raw_input("How many eggs did each hen lay? Enter them in 1 by 1 or enter * when done. "))
exp_1
exp_2
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
If not, then how do I do so?&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
Nathan P.&lt;br /&gt;
Swat spam before it fills your inbox!</description>
      <pubDate>Thu, 28 Feb 2008 00:09:56 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>Which version do I need?</title>
      <link>http://www.programmersheaven.com/mb/python/369274/369274/which-version-do-i-need/</link>
      <description>Hello, can anyone tell me how I am supposed to know which one of these windows versions of Python I need?  I am new to programming languages and thought Python would be a good place to start.&lt;br /&gt;
&lt;br /&gt;
Link&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;a href="http://www.python.org/download/releases/2.5.1/"&gt;http://www.python.org/download/releases/2.5.1/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
*Edit* Nevermind I figured it out.</description>
      <pubDate>Wed, 06 Feb 2008 17:26:29 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>POST parameters</title>
      <link>http://www.programmersheaven.com/mb/python/369087/369087/post-parameters/</link>
      <description>I am trying to figure out how to read POST variables.  I can read GET variables passed through the url like this : "http://somesite.com/somepage.py?someGET=GET variable", but what if it's sent via POST?&lt;br /&gt;
&lt;br /&gt;
thanks a mill&lt;br /&gt;</description>
      <pubDate>Thu, 31 Jan 2008 11:35:16 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>help making a histogram</title>
      <link>http://www.programmersheaven.com/mb/python/368637/368637/help-making-a-histogram/</link>
      <description>Hey guys, i'm a little new here but I looking for some help&lt;br /&gt;
&lt;br /&gt;
I need to read in a file and make a histogram of the frequencies of A-Z, 0-9, ',','.',and'?'&lt;br /&gt;
&lt;br /&gt;
I've got the file open, yada yada, but I'm having trouble figureing out what to do with the character once I read it in.&lt;br /&gt;
&lt;br /&gt;
Anyone provide a little help?? thanks&lt;br /&gt;</description>
      <pubDate>Mon, 14 Jan 2008 08:52:29 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>"#! /usr/bin/env python" does not work..... help</title>
      <link>http://www.programmersheaven.com/mb/python/367503/367503/-usrbinenv-python-does-not-work-help/</link>
      <description>Hi folks.&lt;br /&gt;
&lt;br /&gt;
I've left this post on devshed as well but I can't get an answer and I'm real stuck.&lt;br /&gt;
&lt;br /&gt;
I am trying to learn Python and I've done quite a bit in the last three weeks in the IDLE environment. However I am now trying to get my programs to execute from the command line in Fedora Linux using &lt;em&gt;#! /usr/bin/env python&lt;/em&gt; but I just can't get it to work.&lt;br /&gt;
&lt;br /&gt;
I have &lt;em&gt;env&lt;/em&gt; and &lt;em&gt;python&lt;/em&gt; in the /usr/bin directory. I have changed the permissions using &lt;em&gt;chmod +x&lt;/em&gt; for my file and whenever I try to execute without the &lt;em&gt;python&lt;/em&gt; command Bash just reports command not found:&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;[root@localhost moonshinerat]# mycode.py&lt;br /&gt;
bash: mycode.py: command not found&lt;br /&gt;
[root@localhost moonshinerat]# mycode&lt;br /&gt;
bash: mycode: command not found&lt;br /&gt;
[root@localhost moonshinerat]#&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
I'm at my wits end with this and I'm going to defect to Ruby if I can't get this simple thing to work. Thanks for any solutions guys,&lt;br /&gt;
&lt;br /&gt;
moonshinerat&lt;br /&gt;</description>
      <pubDate>Wed, 21 Nov 2007 19:08:14 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>Python vs. C++</title>
      <link>http://www.programmersheaven.com/mb/python/366595/366595/python-vs-c++/</link>
      <description>I have just posted on my blog the reasons why I think &lt;a href="http://outofthetriangle.wordpress.com/2007/10/18/is-c-the-only-real-language/"&gt;C++ is the one true programming language&lt;/a&gt; (I am being slightly tongue in cheek here). I used 10 questions to compare it to other languages. Unfortunately I have not been able to compare it to Python as I don’t have any experience of Python development. Would anyone be willing to score Python for me?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <pubDate>Thu, 18 Oct 2007 11:31:25 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>very noob question</title>
      <link>http://www.programmersheaven.com/mb/python/365582/365582/very-noob-question/</link>
      <description>hello I just started programming in python today and I am going to make a binary program for the heck of it. but so far I ran into a problem. for some reason it will not print 1. any help would be great thanks "&lt;br /&gt;
ps what is the difference from int(raw_input("ajajaj")) to input("aaaa")&lt;br /&gt;
I am not done with the program yet&lt;br /&gt;
&lt;br /&gt;
name = raw_input("Please enter your name: ")&lt;br /&gt;
print "Hello", name, "Welcome to my Binary Program "&lt;br /&gt;
binary = int(raw_input("Please enter a number between 1-255: "))&lt;br /&gt;
if binary &amp;gt;= 255:&lt;br /&gt;
    binary = binary - 128&lt;br /&gt;
   print "1"&lt;br /&gt;
&lt;br /&gt;
I figure it out but I have another question. here is the code I did to print 1 but I don't understand how it work? any help would be great&lt;br /&gt;
&lt;br /&gt;
name = raw_input("Please enter your name: ")&lt;br /&gt;
print "Hello", name, "Welcome to my Binary Program "&lt;br /&gt;
binary = int(raw_input("Please enter a number between 1-255: "))&lt;br /&gt;
if binary &amp;gt;= 255: binary = binary - 128&lt;br /&gt;
print "1"</description>
      <pubDate>Thu, 13 Sep 2007 14:54:12 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>Come and join my forum!!!</title>
      <link>http://www.programmersheaven.com/mb/python/363786/363786/come-and-join-my-forum/</link>
      <description>Come and join my forum!!!&lt;br /&gt;
&lt;br /&gt;
Many video and MP3 for you to download!!!&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://forums.boajjang.com"&gt;http://forums.boajjang.com&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.boa-planet.net"&gt;http://www.boa-planet.net&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Please support my forum by uploading all your video and mp3 too!!! &lt;br /&gt;
Thank you!!!&lt;br /&gt;
&lt;br /&gt;</description>
      <pubDate>Wed, 25 Jul 2007 17:15:46 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>how to get urls from a domain directory</title>
      <link>http://www.programmersheaven.com/mb/python/362472/362472/how-to-get-urls-from-a-domain-directory/</link>
      <description>I would like to get the urls from an specific domain directory.&lt;br /&gt;
Below I have a cod that takes the html from a url.&lt;br /&gt;
Actually, I need to do something like that but returning the sub urls.&lt;br /&gt;
For example, I sweep &lt;a href="http://www.site.com"&gt;http://www.site.com&lt;/a&gt; and get http://www.site.com/contact, http://www.site.com/portfolio, http://www.site.com/products, ...&lt;br /&gt;
&lt;br /&gt;
import urllib2&lt;br /&gt;
a = urllib2.urlopen('http://www.americanas.com.br/')&lt;br /&gt;
html = a.read()&lt;br /&gt;
a.close()&lt;br /&gt;
print html&lt;br /&gt;
&lt;br /&gt;
Anybody could help me ?&lt;br /&gt;</description>
      <pubDate>Fri, 29 Jun 2007 09:58:55 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>regarding making an exe for windows</title>
      <link>http://www.programmersheaven.com/mb/python/361220/361220/regarding-making-an-exe-for-windows/</link>
      <description>i hav python2.5, matplotlib0.90.1, and py2exe for python 2.5 all on windows... i hav a python program(letsc.py) which uses the matplotlib package... and i want 2 make an exe of it for distribution on other comps... i used py2exe... i wrote a setup.py whose contents are :&lt;br /&gt;
&lt;br /&gt;
from distutils.core import setup&lt;br /&gt;
import py2exe&lt;br /&gt;
import matplotlib&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
setup(console=['letsc.py'],&lt;br /&gt;
          options={&lt;br /&gt;
             'py2exe': {&lt;br /&gt;
                        'packages' : ['matplotlib', 'pytz'],&lt;br /&gt;
                       }&lt;br /&gt;
            },&lt;br /&gt;
    data_files=[matplotlib.get_py2exe_datafiles()])&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
as per the site &lt;a href="#"&gt;http://www.py2exe.org/index.cgi/MatPlotLib]&lt;/a&gt;... welll in the command prompt (not &amp;gt;&amp;gt;&amp;gt;) i typed [in the correct directory] "python setup.py py2exe". it gave out a lot of text on the console but finally in the end it displayed "error: can't copy 'F:\Python25\Lib\site-packages\matplotlib\mpl-data\fonts' : does'nt exist or not a regular file" (when actually there is a directory called mpl-data which has 3 subdirectories ... afm, pdfcorefonts and ttf) and the process stops. It creates the usual dist and build folders but there isnt the required exe in the dist folder... any help will be appreciated... thanx a lot&lt;br /&gt;</description>
      <pubDate>Wed, 13 Jun 2007 07:36:42 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>Retrieve a Value from an Web Site</title>
      <link>http://www.programmersheaven.com/mb/python/359795/359795/retrieve-a-value-from-an-web-site/</link>
      <description>Hi &lt;br /&gt;
I am new to Scripting.&lt;br /&gt;
I've designed a HTML page with a few Tables.&lt;br /&gt;
Now I want to navigate to an URL automatically and retrieve a value associated with a param(attribute) and place it in this cell.&lt;br /&gt;
I want my HTML to update dynamically &lt;br /&gt;
Can anyone please suggest me an idea on how this can be done&lt;br /&gt;</description>
      <pubDate>Fri, 25 May 2007 05:40:13 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>Anyone ever use Tkinter in a Website?</title>
      <link>http://www.programmersheaven.com/mb/python/357878/357878/anyone-ever-use-tkinter-in-a-website/</link>
      <description>Curious if it can or has been done.  If you have used Tkinter, or know someone who has in web development, please give me a link to the site, and any information you have.&lt;br /&gt;
&lt;br /&gt;
TYIA&lt;br /&gt;
&lt;br /&gt;
abbe&lt;br /&gt;</description>
      <pubDate>Tue, 17 Apr 2007 11:31:59 -0700</pubDate>
      <category>Python</category>
    </item>
  </channel>
</rss>