Skip to content

Instantly share code, notes, and snippets.

View j-thepac's full-sized avatar

Deepak j-thepac

View GitHub Profile
@j-thepac
j-thepac / json.py
Last active November 8, 2021 03:16
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)