Lesson 1: Entities ----------------------- In order to be able to store and retrieve data from entities through the use of facts and properties, we create avial object(Created using avials crete_object function) which is an entity connected to the Avial Object Adapter. The Avial Object Adapter gives additional functionality to entities connected to it, enabling enriching entities with data. With a raw entity created using the avials crete_entity function you cannot store or retrieve data from it. These code samples provide a basic introduction on creating entities. For an in-depth description of entities, please visit our wiki Create a Person Entity ++++++++++++++++++++++ .. automodule:: module.utils.create_person_entity :members: :undoc-members: :show-inheritance: Create a Company Entity +++++++++++++++++++++++ .. automodule:: module.utils.create_company_entity :members: :undoc-members: :show-inheritance: Main Driver for Create Entities Lesson ++++++++++++++++++++++++++++++++++++++ .. automodule:: module.lesson_1_entities :members: :undoc-members: :show-inheritance: