This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python | |
# 02/27/2015, Kenial | |
# Just simple scripts for instant use of SQLAlchemy. | |
import sqlalchemy as sa | |
sa.__version__ # '0.9.4' for me | |
# Sample DB connection string | |
# engine = sa.create_engine('postgresql://scott:tiger@localhost/mydatabase') |