Skip to content

Instantly share code, notes, and snippets.

@manugarri
Last active April 22, 2016 15:37
Show Gist options
  • Save manugarri/4c0d68f9c2c8434654402e6053620b68 to your computer and use it in GitHub Desktop.
Save manugarri/4c0d68f9c2c8434654402e6053620b68 to your computer and use it in GitHub Desktop.
Support por python object CSV serialization in python 2
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
{"first_name":"Manuel", "last_name":"Garrido Peña","experience":[{"name":"Peña Industries", "start":"May 2014"}]}
{"first_name":"Ana", "last_name":"Cañón", "experience":[{"name":"Cañón technologies","start":"April 2016"}]}
experience first_name last_name
[{u'start': u'May 2014', u'name': u'Peña Industries'}] Manuel Garrido Peña
[{u'start': u'April 2016', u'name': u'Cañón technologies'}] Ana Cañón
[{u'start': u'May 2014', u'name': u'Peña Industries'}] Manuel Garrido Peña
[{u'start': u'April 2016', u'name': u'Cañón technologies'}] Ana Cañón
experience first_name last_name
[{'name': 'Peña Industries', 'start': 'May 2014'}] Manuel Garrido Peña
[{'name': 'Cañón technologies', 'start': 'April 2016'}] Ana Cañón
[{'name': 'Peña Industries', 'start': 'May 2014'}] Manuel Garrido Peña
[{'name': 'Cañón technologies', 'start': 'April 2016'}] Ana Cañón
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment