Re: [Zope-dev] Constructing a ZOPE request in a python script

2005-11-07 Thread Chris Withers
Dave Coe wrote: I am hoping that someone can help me with how to construct a POST request in a python script. I tried searching the older messages, but post and get are such common terms, that I didn't have much luck. This all feels amazingly clunky, but then you are using dtml, so that's

Re: [Zope-dev] Constructing a ZOPE request in a python script

2005-11-03 Thread Andreas Jung
--On 3. November 2005 07:34:15 -0800 Dave Coe [EMAIL PROTECTED] wrote: I am hoping that someone can help me with how to construct a POST request in a python script. I tried searching the older messages, but post and get are such common terms, that I didn't have much luck. Write an

Re: [Zope-dev] Constructing a ZOPE request in a python script

2005-11-03 Thread Lennart Regebro
On 11/3/05, Dave Coe [EMAIL PROTECTED] wrote: Can this be done? Yes, but it probably doesn't make much sense. If you did create POST request, Zope would tale that request and convert it into a call to the DTML method. However, your script can just call the DTML method directly instead. No