Last active
April 22, 2016 15:37
-
-
Save manugarri/4c0d68f9c2c8434654402e6053620b68 to your computer and use it in GitHub Desktop.
Support por python object CSV serialization in python 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"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"}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{'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