Skip to content

Instantly share code, notes, and snippets.

@j-thepac
Last active November 8, 2021 03:16
Show Gist options
  • Save j-thepac/3c3d03d2e6178c98a090523edb5bc580 to your computer and use it in GitHub Desktop.
Save j-thepac/3c3d03d2e6178c98a090523edb5bc580 to your computer and use it in GitHub Desktop.
Json Marshall in python
class Person:
def __init__(self,name):
self.name=name
import json #yaml
v='{"name":"deepak"}'
j=json.loads(v)
person=Person(**j)
print(json.dumps(person.__dict__))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment