Tag Archives: Python

Python Json: Serialize and Deserialize objects and complex objects

Source code can be found at Github. Introduction Json is a language independent way to represent objects as text and reconstruct objects from text. Json is a lightweight data interchange text format. Using Json an application may save or load … Continue reading

Posted in Dev | Tagged , | Leave a comment

Python Events

Source code can be found at Github. Introduction Event is "something that happens". An Event in computer programming is a code construction. An object, known as Publisher, informs other objects, known as Subscribers or Listeners, that something special is about … Continue reading

Posted in Dev | Tagged , | Leave a comment