Skip to content

Instantly share code, notes, and snippets.

@kipanshi
kipanshi / trafaret_tutorial.py
Created March 12, 2012 20:20 — forked from Deepwalker/gist:2023370
Trafaret Tutorial
def trafaret_tutorial():
"""
So, you have some structure from wild. Say this will be some JSON over API.
But you cant change this JSON structure.
"""
sample_data = {
'userNameFirst': 'Adam',
'userNameSecond': 'Smith',
'userPassword': 'supersecretpassword',
'userEmail': 'adam@smith.math.edu',