DeveloperBreeze

Snippets Programming Tutorials, Guides & Best Practices

Explore 196+ expertly crafted snippets tutorials, components, and code examples. Stay productive and build faster with proven implementation strategies and design patterns from DeveloperBreeze.

Configuring SQLAlchemy with PostgreSQL on Heroku: A Quick Guide

Code November 08, 2024
python

ValueError: Could not parse rfc1738 URL from string 'postgres://...'
if database_url.startswith("postgres://"):
    database_url = database_url.replace("postgres://", "postgresql+psycopg2://")