Definitely a beginner here. I'm having issues connecting to postgresql database run locally on a macosx machine using postgres.app and sqlalchmey:
import psycopg2 import sqlalchemy
engine = sqlalchemy.create_engine('postgresql://localhost/practice.db') engine.connect()
Returns: OperationalError: (OperationalError) FATAL: database "practice.db" does not exist None None
Thanks, Evan