Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
试图找出是否可以在 Heroku 上使用 SQLAlchemy。谢谢。
是的,这是可能的。heroku 提供的DATABASE_URL环境变量非常适合作为create_engine. 在幕后,它是一个 postgresql 数据库,由 sqlalchemy 完美处理。
DATABASE_URL
create_engine
执行此操作的方法可能会因您使用的框架而异,但应该没有任何困难。