Can it be used with SQLAlchemy?
Searched for related documents, but didn't seem to find relevant content. Looking forward to reply, thank you very much 🙏
first i'd like to ask how you intend to use sqlalchemy and pynamodb together as you already know, the pynamodb is the interface to Amazon's Dynamodb and sqlalchmey is orm for rdb if you want to store data simultaneously rdb and dynamodb you can make tx manager using rdb's tx and dynamodb's tx
These are fundamentally different concepts - one doesn't use SQLAlchemy for DynamoDB.
Instead, you'd construct Model instances in either SQLAlchemy and PynamoDB for the desired underlying data objects, and have your code call each when it needs them.