Skip to content

Instantly share code, notes, and snippets.

@jayswan
Created November 2, 2014 23:25
Show Gist options
  • Save jayswan/0aef67246f314c19981a to your computer and use it in GitHub Desktop.
Save jayswan/0aef67246f314c19981a to your computer and use it in GitHub Desktop.
from collections import namedtuple
def d2n(name,d):
""" convert dict to namedtuple """
NewClass = namedtuple(name,d.keys())
return NewClass(*d.values())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment