Skip to content

Instantly share code, notes, and snippets.

@echevemaster
Created June 14, 2014 05:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save echevemaster/1f9c67ea77e84c7ba8f4 to your computer and use it in GitHub Desktop.
Save echevemaster/1f9c67ea77e84c7ba8f4 to your computer and use it in GitHub Desktop.
String connections sqlalchemy
dialect = 'mysql'
userdb = ''
password_db = ''
server = ''
db = ''
SQLALCHEMY_DATABASE_URI = '{0}://{1}:{2}@{3}/{4}'.format(dialect, userdb,
password_db,
server, db)
DATABASE_CONNECT_OPTIONS = {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment