Re: MultiValueDict

2005-12-28 Thread Adrian Holovaty
On 12/28/05, patrick k <[EMAIL PROTECTED]> wrote: > {'body': ['some body text'], 'project': ['1'], 'note': ['1'], 'user': > ['[EMAIL PROTECTED]', '[EMAIL PROTECTED]', '[EMAIL PROTECTED]'], > 'byuser': ['1']} > > now i´m trying to get all "users" to send them an email. > but with something like pos

Re: MultiValueDict

2005-12-28 Thread patrick k
thanks a lot. > > On 12/28/05, patrick k <[EMAIL PROTECTED]> wrote: >> now i´m trying to get all "users" to send them an email. >> but with something like post_data["user"] i only get "[EMAIL PROTECTED]". >> >> so, how can i get all the values for "user" within my dict? > > You might want to t

Re: MultiValueDict

2005-12-28 Thread James Bennett
On 12/28/05, patrick k <[EMAIL PROTECTED]> wrote: > now i´m trying to get all "users" to send them an email. > but with something like post_data["user"] i only get "[EMAIL PROTECTED]". > > so, how can i get all the values for "user" within my dict? You might want to take a look at Simon's respons