Re: Problem w/ mysqldump

2009-09-03 Thread Nitebirdz
On Wed, Sep 02, 2009 at 04:45:02PM -0400, Victor Subervi wrote: I tried running it like you said, got this error: 'mysqldump' is not a recognized internal or external command. If I could just figure out in what file the data were stored, I could copy it and try it in another computer. Any

Re: Entry Level Python Jobs

2009-09-03 Thread Nitebirdz
On Wed, Sep 02, 2009 at 08:31:20AM -0700, JonathanB wrote: I am a self-taught Python programmer with a liberal arts degree (Cross- cultural studies). I have been programming for several years now and would like to get a job as a python programmer. Unfortunately most of the job posts I have

Re: Problem w/ mysqldump

2009-09-02 Thread Nitebirdz
On Wed, Sep 02, 2009 at 08:43:22AM -0400, Victor Subervi wrote: Obviously I'm sure. It created the file. But the file was blank. How can I do a mysqldump in mysql itself? As I said, I only got a blank file when the actual command itself failed. How do you dump the MySQL database itself

Re: Python word to text

2009-09-01 Thread Nitebirdz
On Tue, Sep 01, 2009 at 11:38:30AM +0200, BJörn Lindqvist wrote: Hello everybody, I'm looking for a pure Python solution for converting word documents to text. App Engine doesn't allow external programs, which means that external programs like catdoc and antiword can't be used. Anyone know

Re: Python word to text

2009-09-01 Thread Nitebirdz
On Tue, Sep 01, 2009 at 03:20:29PM +0200, Tino Wildenhain wrote: A quick search returned this: http://code.activestate.com/recipes/279003/ Did you give it a try? Thats a funny advice. Did you read that receipe? ;-) Requires the Python for Windows extensions, and MS Word. how does this

Re: Suggestion

2009-08-31 Thread Nitebirdz
On Sat, Aug 29, 2009 at 02:42:36PM +0530, Thangappan.M wrote: Dear all, I am in the process of learning Python programming language. I know Perl,PHP. Compare to both the language Python impressed me because here there is no lexical variables and all.Now I need suggestion saying that

Re: a popen command line question

2009-08-31 Thread Nitebirdz
On Sat, Aug 29, 2009 at 01:13:12PM -0700, Joni Lee wrote: Hi all, I write a small script status = os.popen('top').readlines() print status It calls the command line top and will print out the status. But I have to press the keyboard q to quit top, then the status will be printed,

Re: Blank Line at Program Exit

2009-08-29 Thread Nitebirdz
On Sun, Aug 23, 2009 at 09:07:53PM +0800, Steven Woody wrote: Hi, I am using cywin on XP. Sorry for the late reply. I've been too busy with some personal matters. It'd seem to me that you're better off taking this issue to the Cygwin mailing lists, since it doesn't seem to be related to

Re: Blank Line at Program Exit

2009-08-22 Thread Nitebirdz
On Thu, Aug 20, 2009 at 01:31:14PM +0800, Steven Woody wrote: Hi, Any python program, even that does absolutely nothing in the code, will cause a blank line printed out when the program exit. What's the reason? Thanks. Chances are it is related to whichever operating system and/or shell

Re: What file is foo in package bar in ?

2009-08-20 Thread Nitebirdz
On Thu, Aug 20, 2009 at 01:06:00AM +0200, Christian Heimes wrote: northof40 wrote: Given an arbitary package is there some programmatic way to 'ask' what file the method/function is implemented in ? Indeed, the inspect module contains several useful functions for the job, for example

Re: Using a Callback Function - ftplib

2009-08-19 Thread nitebirdz
On Mon, Aug 17, 2009 at 11:10:25AM -0700, seldan24 wrote: I didn't even notice the higher level methods. I changed the retrieval line to: ftp.nlst(testfile*.txt) This works great. The result is even captured in an array. I really have no idea what the difference between a LIST and

Re: Using a Callback Function - ftplib

2009-08-18 Thread Nitebirdz
On Mon, Aug 17, 2009 at 11:10:25AM -0700, seldan24 wrote: I didn't even notice the higher level methods. I changed the retrieval line to: ftp.nlst(testfile*.txt) This works great. The result is even captured in an array. I really have no idea what the difference between a LIST and