Re: Podcast catcher in Python

2009-09-19 Thread Chuck
Never mind, guys I finally got things working. Woo hoo -- http://mail.python.org/mailman/listinfo/python-list

Re: Podcast catcher in Python

2009-09-19 Thread Chuck
On Sep 19, 7:40 am, Dave Angel wrote: > Chuck wrote: > > On Sep 12, 3:37 pm, Chuck wrote: > > >> On Sep 11, 9:54 pm, Chris Rebert wrote: > > >>> On Fri, Sep 11, 2009 at 7:43 PM, Chuck wrote: > > Does anyone know how I should read/download the mp3 file, and how I > should write/save it

Re: Podcast catcher in Python

2009-09-19 Thread Chuck
On Sep 19, 7:40 am, Dave Angel wrote: > Chuck wrote: > > On Sep 12, 3:37 pm, Chuck wrote: > > >> On Sep 11, 9:54 pm, Chris Rebert wrote: > > >>> On Fri, Sep 11, 2009 at 7:43 PM, Chuck wrote: > > Does anyone know how I should read/download the mp3 file, and how I > should write/save it

Re: Podcast catcher in Python

2009-09-19 Thread Chuck
On Sep 19, 7:40 am, Dave Angel wrote: > Chuck wrote: > > On Sep 12, 3:37 pm, Chuck wrote: > > >> On Sep 11, 9:54 pm, Chris Rebert wrote: > > >>> On Fri, Sep 11, 2009 at 7:43 PM, Chuck wrote: > > Does anyone know how I should read/download the mp3 file, and how I > should write/save it

Re: Podcast catcher in Python

2009-09-19 Thread Dave Angel
Chuck wrote: On Sep 12, 3:37 pm, Chuck wrote: On Sep 11, 9:54 pm, Chris Rebert wrote: On Fri, Sep 11, 2009 at 7:43 PM, Chuck wrote: Does anyone know how I should read/download the mp3 file, and how I should write/save it so that I can play it on a media player such as Windoz

Re: Podcast catcher in Python

2009-09-18 Thread Chris Rebert
On Fri, Sep 18, 2009 at 7:34 PM, Chuck wrote: > I am using Python 3.1, but I can't figure out why I can't use > xml.dom.minidom.  Here is my code: > > from xml.dom.minidom import parse, parseString > url = 'http://minnesota.publicradio.org/tools/podcasts/ > grammar_grater.xml'  #just for test pur

Re: Podcast catcher in Python

2009-09-18 Thread Chuck
On Sep 12, 3:37 pm, Chuck wrote: > On Sep 11, 9:54 pm, Chris Rebert wrote: > > > On Fri, Sep 11, 2009 at 7:43 PM, Chuck wrote: > > > Does anyone know how I should read/download the mp3 file, and how I > > > should write/save it so that I can play it on a media player such as > > > Windoze media

Re: Podcast catcher in Python

2009-09-12 Thread Someone Something
C shouldn't be very hard. You just get the url of the file you want to connect to, then just use the normal connect sequence and read the file and print it out to the UNIX shell, then at the unix shell, just pipe it to an MP3. Or you could just do it with FILE *. On Sat, Sep 12, 2009 at 4:37 PM, Ch

Re: Podcast catcher in Python

2009-09-12 Thread Chuck
On Sep 11, 9:54 pm, Chris Rebert wrote: > On Fri, Sep 11, 2009 at 7:43 PM, Chuck wrote: > > Does anyone know how I should read/download the mp3 file, and how I > > should write/save it so that I can play it on a media player such as > > Windoze media player?  Excuse my ignorance, but I am a compl

Re: Podcast catcher in Python

2009-09-11 Thread Chris Rebert
On Fri, Sep 11, 2009 at 7:43 PM, Chuck wrote: > Does anyone know how I should read/download the mp3 file, and how I > should write/save it so that I can play it on a media player such as > Windoze media player?  Excuse my ignorance, but I am a complete noob > at this.  I downloaded the mp3, and I

Re: Podcast catcher in Python

2009-09-11 Thread Chuck
; > On Sep 11, 8:20 am, Chuck wrote: > > > >> > > Hi all, > > > >> > > I would like to code a simple podcast catcher in Python merely as an > > >> > > exercise in internet programming.  I am a CS student and new to > > >> > > Pyt

Re: Podcast catcher in Python

2009-09-11 Thread Chuck
On Sep 11, 8:32 pm, Chris Rebert wrote: > On Fri, Sep 11, 2009 at 11:09 AM, Chuck wrote: > > On Sep 11, 12:56 pm, Chuck wrote: > >> On Sep 11, 10:30 am, Falcolas wrote: > >> > On Sep 11, 8:20 am, Chuck wrote: > > >> > > Hi all, > > &

Re: Podcast catcher in Python

2009-09-11 Thread Chris Rebert
On Fri, Sep 11, 2009 at 11:09 AM, Chuck wrote: > On Sep 11, 12:56 pm, Chuck wrote: >> On Sep 11, 10:30 am, Falcolas wrote: >> > On Sep 11, 8:20 am, Chuck wrote: >> >> > > Hi all, >> >> > > I would like to code a simple podcast catc

Re: Podcast catcher in Python

2009-09-11 Thread Chuck
On Sep 11, 1:09 pm, Chuck wrote: > On Sep 11, 12:56 pm, Chuck wrote: > > > > > > > On Sep 11, 10:30 am, Falcolas wrote: > > > > On Sep 11, 8:20 am, Chuck wrote: > > > > > Hi all, > > > > > I would like to code a simple p

Re: Podcast catcher in Python

2009-09-11 Thread Chuck
On Sep 11, 12:56 pm, Chuck wrote: > On Sep 11, 10:30 am, Falcolas wrote: > > > > > > > On Sep 11, 8:20 am, Chuck wrote: > > > > Hi all, > > > > I would like to code a simple podcast catcher in Python merely as an > > > exercise in interne

Re: Podcast catcher in Python

2009-09-11 Thread Chuck
On Sep 11, 10:30 am, Falcolas wrote: > On Sep 11, 8:20 am, Chuck wrote: > > > Hi all, > > > I would like to code a simple podcast catcher in Python merely as an > > exercise in internet programming.  I am a CS student and new to > > Python, but understand Java

Re: Podcast catcher in Python

2009-09-11 Thread Falcolas
On Sep 11, 8:20 am, Chuck wrote: > Hi all, > > I would like to code a simple podcast catcher in Python merely as an > exercise in internet programming.  I am a CS student and new to > Python, but understand Java fairly well.  I understand how to connect > to a server with u

Re: Podcast catcher in Python

2009-09-11 Thread Chuck
Also, if anyone could recommend some books that cover this type of programming, I would greatly appreciate it. Thanks! -- http://mail.python.org/mailman/listinfo/python-list

Podcast catcher in Python

2009-09-11 Thread Chuck
Hi all, I would like to code a simple podcast catcher in Python merely as an exercise in internet programming. I am a CS student and new to Python, but understand Java fairly well. I understand how to connect to a server with urlopen, but then I don't understand how to download the mp