Re: [Tutor] Paradox database files

2005-03-07 Thread apple_py
Hi Danny, Thanks a lot for your help. I have not been able to try it out, but I will first thing tomorrow. It seems that this is just what I need. I love this forum. Thanks to all. Victor ---Original Message--- > From: "Danny Yoo" <[EMAIL PROTECTED]> > Subject: Re: [Tutor] Paradox datab

Re: ****SPAM(11.8)**** Re: [Tutor] returning table elements with Beautiful Soup

2005-03-07 Thread Kent Johnson
Bob Gailer wrote: At 06:20 AM 3/5/2005, Alan Gauld wrote: > > I'm trying to use Beautiful Soup to scrape some data out of an HTML > > table. I can do this using A new one on me, but Beautiful Soup looks very interesting. I've just downloaded it. From where? My Google search does not help. Actua

Re: ****SPAM(11.8)**** Re: [Tutor] returning table elements with Beautiful Soup

2005-03-07 Thread Bob Gailer
At 06:20 AM 3/5/2005, Alan Gauld wrote: > > I'm trying to use Beautiful Soup to scrape some data out of an HTML > > table.  I can do this using A new one on me, but Beautiful Soup looks very interesting. I've just downloaded it. From where? My Google search does not help. Thanks for pointing it

Re: [Tutor] Paradox database files

2005-03-07 Thread Danny Yoo
On Mon, 7 Mar 2005, Victor Bouffier wrote: > Does anybody know of a Python module to read from Paradox database > files? I don't need to write back to the files. These files are being > exported using a proprietary application and I need to parse them to > extract transaction information. Hi V

[Tutor] Paradox database files

2005-03-07 Thread Victor Bouffier
Hi all. Does anybody know of a Python module to read from Paradox database files? I don't need to write back to the files. These files are being exported using a proprietary application and I need to parse them to extract transaction information. I found something about ODBC being able to conne

[Tutor] Can you get python to force a number to remain 32 bit instead of autoconverting to type 'long'?

2005-03-07 Thread R. Alan Monroe
I tried to convert this pseudocode function IntNoise(32-bit integer: x) x = (x<<13) ^ x; return ( 1.0 - ( (x * (x * x * 15731 + 789221) + 1376312589) & 7fff) / 1073741824.0); end IntNoise function from this website http://freespace.virgin.net/hugo.elias/models/m_perlin.htm to py

Re: [Tutor] How to get graphical representation in Excel file

2005-03-07 Thread Alan Gauld
> I am working on Python on Windows XP, Iam being able to create or > generate an Excel file using python, but unable to write the excel > file with the graphs in it. I want to represent some data in the > form of Graph (Gant chart, Pie chart and all), Creating graphs in Excel is best done with

Re: [Tutor] help

2005-03-07 Thread Alan Gauld
>Does sp1 and sp2 in Wwindows XP block certain python commands? Nope. Although SP2 does various strange things that could cause some bits of Python to behave strangely but there are plenty people using SP2 and Python suvccessfully. Alan G. ___ Tuto

Re: [Tutor] help

2005-03-07 Thread Alan Gauld
> Is there a forum for the complete beginning Python student? Yes, this is it! Welcome. Alan G Author of the Learn to Program web tutor http://www.freenetpages.co.uk/hp/alan.gauld ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/l

Re: [Tutor] How to get graphical representation in Excel file

2005-03-07 Thread Danny Yoo
[Ravi] > > I am working on Python on Windows XP, Iam being able to create or > > generate an Excel file using python, but unable to write the excel > > file with the graphs in it. I want to represent some data in the form > > of Graph (Gant chart, Pie chart and all), [Liam] > Erm win32api?

Re: [Tutor] help

2005-03-07 Thread glen
Gregory Sexton wrote: > Thanks for the help! Sorry for the trivial questions, but I guess we all > have to start somewhere. Beginning python student, OS Windows XP,using > Python 2.4. Also novice to programming. I cant get the "/a" command to > work. Shouldn't it be "\a", and it won't work

Re: [Tutor] help

2005-03-07 Thread Michael Lange
On Mon, 07 Mar 2005 11:46:42 -0500 Kent Johnson <[EMAIL PROTECTED]> wrote: > Gregory Sexton wrote: > > Thanks for the help! Sorry for the trivial questions, but I guess we all > > have to start somewhere. Beginning python student, OS Windows XP,using > > Python 2.4. Also novice to programming.

Re: [Tutor] help

2005-03-07 Thread Max Noel
On Mar 7, 2005, at 16:46, Kent Johnson wrote: Gregory Sexton wrote: Thanks for the help! Sorry for the trivial questions, but I guess we all have to start somewhere. Beginning python student, OS Windows XP,using Python 2.4. Also novice to programming. I cant get the "/a" command to work. I do

Re: [Tutor] help

2005-03-07 Thread Kent Johnson
Gregory Sexton wrote: Thanks for the help! Sorry for the trivial questions, but I guess we all have to start somewhere. Beginning python student, OS Windows XP,using Python 2.4. Also novice to programming. I cant get the "/a" command to work. I don't know what the "/a" command is, please gi

Re: [Tutor] How to get graphical representation in Excel file

2005-03-07 Thread Liam Clarke
Erm win32api? On Sun, 6 Mar 2005 21:35:16 -0800 (PST), Ravi Kishan T.S <[EMAIL PROTECTED]> wrote: > Hi! > > I am working on Python on Windows XP, Iam being able to create or generate > an Excel file using python, but unable to write the excel file with the > graphs in it. I want to repres