Re: Authorize.net integration problem

2009-03-31 Thread Stephen Chapman
Are they expecting the results in a specific order... because as you probably know a dictionary is never in the order that you add the items. Lakshman Prasad wrote: Yup. Unusual, it is. But thats how their string specification syntax is. It includes a ^ at the end. On Tue, Mar 31, 2009 at

Quickbooks

2009-01-28 Thread Stephen Chapman
Has anyone Implemented the Quickbooks COM object in Python. If so can you give me an Idea of where to begin. Thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: PyQt4 on Windows ?

2009-01-19 Thread Stephen Chapman
I have one running. actually use freezer to create an exe for it in windows. http://www.riverbankcomputing.co.uk/software/pyqt/download That will tell you how to get started. The app I wrote uses Pryro(with middleware server on a linux machine). And I use the standard widgets that qt has

QT4

2009-01-14 Thread Stephen Chapman
Hey, looks like Nokia bought Qt and solved the Open Source/Commercial license issue: http://rss.slashdot.org/~r/Slashdot/slashdot/~3/A4br-rQA460/article.pl http://rss.slashdot.org/%7Er/Slashdot/slashdot/%7E3/A4br-rQA460/article.pl I wonder if pyqt will follow suit... --

Re: formatted 'time' data in calculations

2009-01-07 Thread Stephen Chapman
Here is how I have done adjustments to time in the past. This is mostly Date related but it may help today = datetime.date.today() wkdiff = datetime.timedelta(weeks=1) daydiff = datetime.timedelta(days=1) startdate=(today-wkdiff)-daydiff this will subtract 1 week and 1 day from today. Stephen

Re: mod_python: delay in files changing after alteration

2009-01-05 Thread Stephen Chapman
I have never noticed any such delay. After making a change I just hit F5 on my browser and its fine. Maybe its a browser issue On 1/5/09, psaff...@googlemail.com psaff...@googlemail.com wrote: Maybe this is an apache question, in which case apologies. I am running mod_python 3.3.1-3 on

ZSI - ServiceContainer

2008-12-28 Thread Stephen Chapman
Does Anyone know how to Make the ServiceContainer work under SSL Thanks -- http://mail.python.org/mailman/listinfo/python-list