I have an existing Django application data stored under Postgres RDS. Now I want to query/update the data via a lambda(AWS) function with Django style ORM.
I know in theory it is possible if,
- Package the whole Django library with the lambda function(zipped)
- Declare all the models inside package
- Start using Django ORM as we do normally (Ex
User.objects.all()
)
I wanted to know if anyone has done this? Examples or write-ups are much appreciated