Re: English-like Python

2009-01-20 Thread Abah Joseph
Python is English-like enough that everybody including non-programmers can understand it.e.g # Import the operating system module import os # define new function def open_dir_tree(path): for File in os.listdir(path): file_or_dir = os.path.join(path, File) # Read the line below

Re: book recommendation for Python newbie?

2008-10-10 Thread Abah Joseph
Core Python Programming" written by Wesley J. Chun, second edition, Prentice Hall, ISBN 0-13-226993-7, go for it. I`m only a PHP programmer and this book have helped me a lot from basic to advance level. though i`m still reading... On 10/10/08, slais-www <[EMAIL PROTECTED]> wrote: > > Mike Drisc

Win32 system administrator gpedit.msc

2008-10-10 Thread Abah Joseph
Hi everybody... i`m not a prof in english so please read and understand me.. Thank u. Using the win32 python module can we perform every tasks like *gpedit.msc?* i will like to automate tasks like enabling or disaple some of the windows functions. with my basic experince, you can perform important

Win32 system admin

2008-10-10 Thread Abah Joseph
Hi everybody... i`m not a prof in english so please read and understand me.. Thank u. Using the win32 python module can we perform every tasks like *gpedit.msc?* i will like to automate tasks like enabling or disaple some of the windows functions. with my basic experince, you can perform importan

Creating single .exe file without py2exe and pyinstaller

2008-10-18 Thread Abah Joseph
I have written a small application of about 40-45 lines which is about 4KB, so I want to create a single .exe file from it, using py2exe it created unnecessary files, that just increase the size of the program and also less portable to me. What else can I use? I am on windows XP. Python 2.5 -- http

Tree or hierarchical structure

2008-10-30 Thread Abah Joseph
I need tutorial or book on Tree or hierarchical structure using Python. -- http://mail.python.org/mailman/listinfo/python-list

Creating custom Database or file type

2008-11-04 Thread Abah Joseph
i searched on google on the above subject ( http://delphi.about.com/od/fileio/a/fileof_delphi.htm). what does it take to create a custom database or file type? something like mini-Sqlite or some other way that the file will look secure and can be read on my application runing platform. I already k

What is the best Python GUI API?

2008-11-13 Thread Abah Joseph
What is the best Python GUI API? I am planning to start my first GUI application and I need something easy and cross platform. Qt applications look beautiful but I hate the license. What do you advice? -- http://mail.python.org/mailman/listinfo/python-list

Socket Programming and Data transer 'advice'

2008-11-17 Thread Abah Joseph
I am planning to develop School Database Management System that will run on Windows, Linux and Mac. The application will be Server/Client and GUI based. Modules I intende to use are: Python socket module, wxPython for GUI, Open GL for image processing , email and so on. This is my first real pyt