I know in php I could just use $_GET['key1']['key2'] to retrieve get data that is sent in the form of an array but is that something possible in python as I just receive a string and it's not recognized as an array/list.

I use flask/werkzeug if that matters

link|improve this question

62% accept rate
1  
Learn to read the question and what the people actually want before voting to close a question. I know how to get the request params, thats not what I asked about. Your url brings nothing new. – Romeo M. Oct 29 '11 at 16:44
1  
I didn't vote to close anything. After all I have less than 100 rep, so I can't do that. I gave you a link that might be helpful. – Confluence Oct 29 '11 at 16:59
feedback

3 Answers

up vote 1 down vote accepted

The deep parsing of argument names is unique for PHP AFAIK.

If you need just a simple list, just pass several parameters with the same name and use request.args.getlist(<paramname>) (documentation).

Otherwise you have to parse the query string yourself.

link|improve this answer
I was afraid of that. Unfortunately I'm parsing an IPN from a payment gateway which sends arrays so I have to parse them as strings I believe. – Romeo M. Oct 29 '11 at 17:19
How are the IPNs encoded? Can you post an example? – Rob Cowie Oct 29 '11 at 17:56
IPN_REFNO[23456,23465]&IPN_TOTALAMOUNT[2133,3455] – Romeo M. Oct 29 '11 at 22:13
feedback

request.args is a MultiDict instance (MultiDict, Flask request api).

request.args[key] ## returns a single value, the first if there are multiple
request.args.getlist(key) ## returns a list

If you want to submit structures more complex than can be encoded using simple key:vals, consider sending a json encoded object.

Also, look at the jQuery recursive param serialisation pattern, and the jquery-unparam lib which can deserialise it.

link|improve this answer
feedback

The get parameters are located in request.args list.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.