I know that in DTML, they would be in the REQUEST dictionary... I think in python script, that corresponds to context. So they would be in context.param0, or perhaps context['param0']
From: "Bruce Pearson &/or Gwyn Ingham" <BruceP@wn.com.au> Date: Mon, 28 May 2001 09:56:23 +0800 To: "Zope" <Zope@Zope.org> Subject: [Zope] Passing a variable number of parameters to a Python script
Hi,
I wonder if anyone can help me.
I have a python script in which I want to accept a variable number of parameters from a post method.
ie http://Localhost:8080/apply?count=2¶m0=abc¶m1=xyz
or http://Localhost:8080/apply?count=4¶m0=abc¶m1=123¶m2=rst¶m3= xyz
I want to access the parameters as a list something like this:
PythonScript
apply(count, *args) print count for arg in args print arg
Thanks Bruce.
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )