Skip to content

Instantly share code, notes, and snippets.

@riffm
Created June 18, 2009 09:17
Show Gist options
  • Save riffm/131813 to your computer and use it in GitHub Desktop.
Save riffm/131813 to your computer and use it in GitHub Desktop.
django - django.utils.datastructures.MultiValueDict (iteritems() - (key, last_value))
werkzeug - werkzeug.datastructures.MultiDict (iteritems() - (key, first_value))
webob - webob.multidict.MultiDict (iteritems() - (key, value))если у ключа несколько значений, то будет несколько
кортежей (key, value1) (key, value2)...
webware - FieldStorage
nevow - обычный словарь (!) http://www.divmod.org/trac/browser/tags/releases/Nevow-0.9.33/nevow/wsgi.py#L154
woven - см. выше (nevow)
turbogears2 - использует pylons
pylons - использует webob
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment