gaierror

2009-09-10 Thread vpr
Hi I have a working python app that consumers SOAP services on a 32bit platform. I've packaged it with cx_freeze and executed it on a 64bit plaform. If I use the IP address as the hostname I have no problem, it works as expected. However if I use a DNS name, which I can resolve manuallty i.e.

cross platform distribution

2009-09-04 Thread vpr
I've build a build using cx_freeze which works well except it's not really portable betweem distributions. I've also been thinking about distributing bytcode versions but things get tricky quickly. Can anywone give me some pointers? Cheers vpr -- http://mail.python.org/mailman/listinfo/python

Re: cross platform distribution

2009-09-04 Thread vpr
On Sep 4, 3:33 pm, Philip Semanchuk phi...@semanchuk.com wrote: On Sep 4, 2009, at 9:24 AM, vpr wrote: On Sep 4, 3:19 pm, Philip Semanchuk phi...@semanchuk.com wrote: On Sep 4, 2009, at 4:44 AM, vpr wrote: Hi All After a couple of experiments, searching around and reading Steve

Re: groupby is brilliant!

2006-06-13 Thread vpr
Hi Frank This is one of the reasons why I love Python, you can write readable code. I strive to write clean code but I find that exception handling code e.g. try: makes my code ugly and significantly harder to read. Does anyone have any good pointers for a former C++ / Perl coder. /vpr Frank

Amazon and Webservices

2006-06-09 Thread vpr
have a working webservices implementation (not pyamazon) ? /vpr -- http://mail.python.org/mailman/listinfo/python-list

Python / Apache / MySQL

2006-02-14 Thread vpr
Hi All I want to build an Website using Apache / Python and MySQL. I dont want to spend to much time hacking html. I'm looking for some recommendations e.g. should I be using mod_python ? whats the best module for mysql ? any suggestings so I could get my site up in a day ? [EMAIL PROTECTED]

Re: wxPython question

2005-10-18 Thread vpr
I've had some problems, it seems that they dont render well in Linux. I tried it with Ubuntu Breezy. -- http://mail.python.org/mailman/listinfo/python-list

wxPython advice

2005-10-17 Thread vpr
Hi Guys I have a question re. socketserver and wx. I've written a p2p program using socketserver that's nice and quick. I'd like to give the user a tray applet (part of the p2p service) that will allow the user to activate / deactivate / config and exit the service. However I'm starting to bang

wxPython question

2005-10-13 Thread vpr
Hi Does anyone have some example code to create a wx dialog that apears off screen on the bottom right hand corner and slides up into the screen ? Thanx /vpr -- http://mail.python.org/mailman/listinfo/python-list

slip python p2p program, developers wanted

2005-09-19 Thread vpr
the need to set up shares or start FTP servers. help need with: --- wx issues (linux vs windows rendering) rate / connection limiting packaging testing tray application to control service / daemon comments If you are interested drop me a line. regards /vpr -- http://mail.python.org

Error managment question (Trace Backs ?)

2005-09-01 Thread vpr
Hi This is a noob question, but here goes. I have a class that calls a function. class test: def __init__(self): if foo(): print it worked else: print error def foo(): some test returns 1 or 0 Now in other langs like C / C++

slip beta code released

2005-08-24 Thread vpr
Hi All Just released the code from my little excusion in socket coding with Python. I still need many pointers esp wrt. the way I hacked wx into the code. Comments welcomed. Quick start --- start up the service: slip.py -s all hosts running slip will be discovered, to see who else is

Re: slip beta code released

2005-08-24 Thread vpr
I forgot to say that this is my little P2P pet project. Need to send files quickly between systems without having to set up shares or start ftp servers. The idea is to make it easy to slip files between parties esp if they are on different OS's. --