Re: War chest for writing web apps in Python?

2006-07-29 Thread Rob Sinclar
> > Synaptic is using aptitude as back-end (this is serious). > > Why can I deinstall aptitude without deinstalling synaptic then!? > > Ciao, > Marc 'BlackJack' Rintsch Hi, This is because Aptitude is an independant console application that is very useful to users working on linux machines w

Re: War chest for writing web apps in Python?

2006-07-29 Thread Rob Sinclar
On Saturday 29 July 2006 03:43, Nick Vatamaniuc wrote: > Aptitude, are you still using that? Just use Synaptic on Ubuntu. The > problem as I wrote in my post before is that for some IDEs you don't > just download an executable but because they are written for Linux > first, on Windows you have to

Re: War chest for writing web apps in Python?

2006-07-28 Thread Rob Sinclar
> > I'm thinking of using Python to build the prototype for a business web > > appplication. The development and test machine is XP, while ultimate > > deployment will be on a shared Unix web host. > > > > What would you recommend I get, besides the Python engine itself? Good > > IDE (Kodomo?) ? So

Re: HELP!!! How do I send an ACK packet in UDP?????

2006-07-26 Thread Rob Sinclar
On Wednesday 26 July 2006 00:48, [EMAIL PROTECTED] wrote: > how do I send an ack packet UDP stands for User Datagram Protocol. Ther'es no ack like in TCP. Define your own protocol ie when machine1 sends the string "ACK", machine2 has the acknowledge it wanted. Regards, Rob -- http://mail

Re: Which Pyton Book For Newbies?

2006-07-26 Thread Rob Sinclar
On Tuesday 25 July 2006 04:33, [EMAIL PROTECTED] wrote: > > Web programming is all about stdin & stdout. Recommanded practice > > before going further. > > It's actually a little more (at least as far as CGI is concerned)...it > bears some level of abstraction, namely, a decent CGI lib. Do you mea

Re: doctest with variable return value

2006-07-25 Thread Rob Sinclar
response = urllib2.urlopen(request) STR = response.read() return STR.split(',')[1].strip() SYMB='AUDEUR' print SYMB,'=',get_rate(SYMB) Python rocks. That's be nice to indicate hour though (4th array element)... Best Regards, Rob Sinclar -- http://mail.python.org/mailman/listinfo/python-list