<div dir="ltr">Hi, <div>i'm traing to serialize my called in python. This is my example:</div><div>I have this two classes:</div><div><br></div><div><b>class User():</b></div><div><b>  def __init__(self, _name, _lastname):</b></div>
<div><b>       self.Name = _name</b></div><div><b>       self.LastName = _lastname</b></div><div><b><br></b></div><div><b>class News():</b></div><div><b>  def __init__(self, _news,_user):</b></div><div><b>       self.News = _news</b></div>
<div><b>       self.User = _user</b></div><div><br></div><div><br></div><div>than i create my class in my code:</div><div><br></div><div>...</div><div><b>myUser = User("Mario","Rossi")</b></div><div><b>myNews = News("My last news", myUser)</b></div>
<div><b><br></b></div><div><b>JSONstring = dumps(myNews)</b></div><div>...</div><div><br></div><div>but in the last line of code i get the error that the News class is not JSON serializable.</div><div><br></div><div>How I can make this work?</div>
<div><br></div><div>Thanks.</div><div><br></div><div>Regards</div><div><br></div><div>Marco</div></div>