You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this library. I'd like to ask for a convenience method that output a dict of a multidict - with lists for multi-values. Currently I have this:
defdict(self) ->Dict[str, List[Any]]:
""" Returns: A dict of lists """return {k: self.getall(k) forkinset(self.keys)}
While this works, its not very performant.
The text was updated successfully, but these errors were encountered:
Hi there,
Thanks for this library. I'd like to ask for a convenience method that output a dict of a multidict - with lists for multi-values. Currently I have this:
While this works, its not very performant.
The text was updated successfully, but these errors were encountered: