Skip to content

Instantly share code, notes, and snippets.

@tonytan4ever
Created February 3, 2015 19:49
Show Gist options
  • Save tonytan4ever/fa0ec395f414c8ee4856 to your computer and use it in GitHub Desktop.
Save tonytan4ever/fa0ec395f414c8ee4856 to your computer and use it in GitHub Desktop.
session.execute('''
INSERT INTO poppy.flavors (flavor_id,
providers)
VALUES (%(flavor_id)s,
%(providers)s)
''', dict(flavor_id="standard",
providers=dict([("fastly", 'www.fastly.com')])
))
session.execute('''
INSERT INTO poppy.flavors (flavor_id,
providers)
VALUES (%(flavor_id)s,
%(providers)s)
''', dict(flavor_id="premium",
providers=dict([("akamai", 'www.akamai.com')])
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment