I want to show data from DynamoDB on the Django admin panel page. I have tried PynamoDB to create the model and register it with the admin panel.
I am facing the following two issues:
Getting only attribute 'id' instead of all attributes from the DynamoDB table. I have confirmed this issue while fetching attribute_definitions from the DynamoDB table using boto3.
attribute_definitions = table_name.attribute_definitions
The second issue I am facing is that I get errors while registering the created Model(by using PynamoDB) with the admin panel. I get the issue
"TypeError: 'MetaModel' object is not iterable"