sqlalchemy.exc.NoSuchModuleError: Can’t load plugin: sqlalchemy.dialects:postgres が出た


広告は適当。

sqlalchemy.exc.NoSuchModuleError: Can’t load plugin: sqlalchemy.dialects:postgres
というエラーが出たときに、今までと接続方法も色々変わって動かなくなったことで調査開始。

結論から書くと、SQLAlchemyでpostgresという表記だと使えなくなるケースがあった。

export PG_URL=postgres://接続先

export PG_URL=postgresql://接続先

昔は使えたみたいだけど、ずっと非推奨だったので、ついに使えなくなった、という話。


参考:
https://tkstock.site/2021/12/03/heroku-sqlalchmy-create_engine-%E3%82%A8%E3%83%A9%E3%83%BC-nosuchmoduleerror/