user = User.objects.get(id=1)
Ex - If someone wants to get all addresses of a user.
user.get_information('address') --> This will in turn search UserAddress table and return a list of addresses.
Ex - If someone wants to get the current age of a user.
user.get_information('age') --> This will in turn search UserInformation table with key=age and return the value.
Similarly given a key I want to write data through the interface.
Ex - Insert age of a user.Enter code here...
user = User.objects.get(id=1)
user.update_information('age', value=30) --> This will in turn insert a row in UserInformation table with key=age and value=30.