Re: I Need Motivation Part 2

2005-11-04 Thread projecktzero
[EMAIL PROTECTED] wrote: i m losing my motivation with python because there are sooo many modules If you think Python has too many modules, then you better stay away from Perl and CPAN. =) -- http://mail.python.org/mailman/listinfo/python-list

Re: Tutorials for Python + PostgreSQL

2005-11-23 Thread projecktzero
Michele Simionato wrote: Steve: I want to learn more about enterprise-level programming using Python and PostgreSQL. From what I've searched, it seems that psycho is interesting to improve runtime too. Do you have tutorials, articles and tips to learn this combination? I've been working

lies about OOP

2004-12-13 Thread projecktzero
I know this might not be the correct group to post this, but I thought I'd start here. A co-worker considers himself old school in that he hasn't seen the light of OOP.(It might be because he's in love with Perl...but that's another story.) He thinks that OOP has more overhead and is slower than

Re: New Python.org website ?

2006-01-13 Thread projecktzero
Steve Holden wrote: http://beta.python.org Looks great! Looking forward to the day when it goes live. Note: The pics don't bother me. -- http://mail.python.org/mailman/listinfo/python-list

Re: ssh or other python editor

2005-10-04 Thread projecktzero
[EMAIL PROTECTED] wrote: H! I'm using a windows machine. And a FreeBSD server where I run my python scripts. I'm working/making my python scripts in a windows OS with putty now. But I really want the python text colors and tab spacing like the python windows IDE but the problem is that I

Re: Book Python and Tkinter Programming

2005-10-07 Thread projecktzero
striker wrote: Does anyone who has this book willing to sell it. Please e-mail me the condition and any other details if you are interested. Thanks, Kevin half.com has a couple of people selling it. One for $35.24 and another for $129.97. --

Getting binary data out of a postgre database

2005-06-24 Thread projecktzero
Well, I've managed to get an image into a postgre database, but now I'm having trouble getting it out. #! /usr/bin/env python from pyPgSQL import PgSQL def main(): connectdb = PgSQL.connect('server:port:database:username:password') cur = connectdb.cursor() sqlStatement = SELECT

Re: Getting binary data out of a postgre database

2005-06-27 Thread projecktzero
Sorry for the late reply. I didn't check the group/list over the weekend. Anyway, I added a print rec[0] just after the fetchone. Then I ran it from the command line, and it spewed a bunch of binary gibberish nearly locking up Putty. To me, it seems like it's coming out in the right format, but

Re: Getting binary data out of a postgre database

2005-06-28 Thread projecktzero
whew! tempFile.write(str(rec[0])) works! printing rec[0].__class__ puts out pyPgSQL.PgSQL.PgBytea Thanks for the help! -- http://mail.python.org/mailman/listinfo/python-list

Re: Modules for inclusion in standard library?

2005-06-28 Thread projecktzero
I'll 2nd the vote for Pychecker. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python IDE

2005-07-20 Thread projecktzero
You should probably stick with Xemacs. I use VIM, but I would be surprised if Xemacs doesn't have those features you want. Also, it's probably better to learn one editor well than a little bit of a bunch of different editors. -- http://mail.python.org/mailman/listinfo/python-list

Re: On fighting fire with fire...

2005-07-28 Thread projecktzero
but..but...It's so much more fun to unleash your anger and fire back with all guns blazing fanning the flame war that most discussion groups degenerate into after a couple of responses. =) Actually, I had some self restraint yesterday. I wanted to write a ripping response to an antagonistic flame

Re: Python IDE's

2005-08-01 Thread projecktzero
VIM or Emacs. I use VIM on Windows, Mac, and VMS. I'd consider it more of an editor than an IDE, but there are many IDE features available with plug ins. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python IDE's

2005-08-02 Thread projecktzero
The thing that nudged me into trying VIM was the book, The Pragmatic Programmer. It mentioned Emacs and VIM and the value of learning a powerful editor and sticking with it. I had tried Emacs three times long ago, and it didn't click with me. I decided to try VIM, and it made a lot more sense to

Re: pain

2005-08-04 Thread projecktzero
a manager telling me what tools to use to do my job is a bad manager by definition because he should realize that the people who best know what tools to use are the peope who use the tools*. I'm sorry, this doesn't make much sense to me. In an ideal world where all developers are all knowing and

templates

2006-01-30 Thread projecktzero
For some of the web programming I've done in Python, I've used htmltmpl. I had some experience with it in Perl, and found a Python version. http://htmltmpl.sourceforge.net/ I like that there's nearly a complete separation between the presentation and the code. This is great when one person is

Re: Grouping code by indentation - feature or ******?

2005-03-25 Thread projecktzero
Tim Tyler wrote: What do you guys think about Python's grouping of code via indentation? Is it good - perhaps because it saves space and eliminates keypresses? Or is it bad - perhaps because it makes program flow dependent on invisible, and unpronouncable characters - and results in more

Re: New to Vim and Vim-Python

2007-10-25 Thread projecktzero
On Oct 24, 12:25 pm, Daniel Folkes [EMAIL PROTECTED] wrote: I am new to using Vim's scripts. I was wondering if anyone uses Vim-Python and how to use it? This includes things like key bindings and such. Thanks in advance, Daniel Folkes [EMAIL PROTECTED] I'm not exactly sure what you are

Re: New python.org website

2006-03-07 Thread projecktzero
I think the new site is great. I really don't understand all the nit picking that's going on from the armchair web designers. The new site is clean and professional. It needs to go live soon! -- http://mail.python.org/mailman/listinfo/python-list

Re: New python.org website

2006-03-07 Thread projecktzero
Oops...it is live. Cool! -- http://mail.python.org/mailman/listinfo/python-list

Re: Is PEP-8 a Code or More of a Guideline?

2007-05-30 Thread projecktzero
On May 30, 12:36 am, Hendrik van Rooyen [EMAIL PROTECTED] wrote: Maric Michaud [EMAIL PROTECTED] wrote: Typist is fine, although MCP that I am, I tend to think of typist as female... - Hendrik What does being a Microsoft Certified Professional(MCP) have to do with thinking of a typist as

Re: Are Python's reserved words reserved in places they dont need to be?

2006-09-14 Thread projecktzero
Paul Rubin wrote: Antoon Pardon [EMAIL PROTECTED] writes: This is just an idea of mine, nothing I expect python to adapt. But just suppose the language allowed for words in bold. A word in bold would be considered a reserved word, a word in non bold would be an identifier. Heh, sounds

Re: Python IDE for linux

2006-04-20 Thread projecktzero
Neil Isaac wrote: I have been writing python my little python scripts in gedit and running them using the command line. At this point I'm thinking that I would like to start using a real IDE. I don't need anything special or fancy, but would like it to manage projects, etc... I do know

Re: Python Oracle

2007-03-14 Thread projecktzero
On Mar 14, 12:01 pm, Facundo Batista [EMAIL PROTECTED] wrote: Hi! I need to connect to Oracle. I found this binding, http://www.zope.org/Members/matt/dco2 that is the recommended in the Python page. But that page seems a bit confuse to me. In the upper right corner says that the last