Re: Change Gateway Programmatically

2006-01-11 Thread Godwin Burby
Thanx again. -- http://mail.python.org/mailman/listinfo/python-list

Re: Change Gateway Programmatically

2006-01-10 Thread Godwin Burby
Well netsh turned out to be the perfect solution for my problem(even though doing it in python would have given me some kicks). I managed it with two .bat files for toggling the gateway ips. Thank you friend. -- http://mail.python.org/mailman/listinfo/python-list

Change Gateway Programmatically

2006-01-10 Thread Godwin Burby
Dear Pythoneer, I need to toggle the gateway ip of my windows xp machine quite often due to some software requirements. I just want to know whether i could do it programmatically using Python. If so how? -- http://mail.python.org/mailman/listinfo/python-list

Re: books: Dive into Python vs Beginning Python

2005-11-25 Thread Godwin Burby
I would recommend both, but as i have already bought the first version of Beginning Python known as Practical Python by Magnus. I can gaurantee you that the practical projects as well as the succinct python tutorial in the book will show you the full power and glory of Python. Magnus is a great aut

Re: How to get started in GUI Programming?

2005-11-25 Thread Godwin Burby
Try http://boa-constructor.sourceforge.net/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Cmd Module

2005-11-23 Thread Godwin Burby
Sorry! I just retyped my script instead of copy pasting it. well thank u once again for clearing my confusion. -- http://mail.python.org/mailman/listinfo/python-list

Cmd Module

2005-11-22 Thread Godwin Burby
Dear Pythoneer, I was just curious about using the cmd module for building my own command line interface. i saw a problem. The script is as follows: from cmd import Cmd import getpass class CmdTest(cmd): def __init__(self): super(CmdTest, self).__init__() def do_login(sel

Re: print there!

2005-09-21 Thread Godwin Burby
i didn't notice it and i'm really sorry. it works beautifully! thanks once again :) -- http://mail.python.org/mailman/listinfo/python-list

Re: print there!

2005-09-20 Thread Godwin Burby
thanks :) It works beautifully. -- http://mail.python.org/mailman/listinfo/python-list

Re: print there!

2005-09-20 Thread Godwin Burby
i think u've misunderstood my question. Your solution will print on a new line as below: c:\godwin\bl.csv 1 c:\godwin\bl.csv 2 c:\godwin\bl.csv 3 But i want this number to diplay their value increase on the same line on the same sport itself without printing the filename multiple times on multiple

print there!

2005-09-20 Thread Godwin Burby
Dear Pythoneer, I am writing a python script which inserts or updates a database from a csv file. i've done the functionality. But i would to like to show the user the current row being inserted or updated in the screen. This can be done as follows: print 'c:\godwin\bl.csv', for i,row in enume