Created
February 3, 2015 19:49
-
-
Save tonytan4ever/fa0ec395f414c8ee4856 to your computer and use it in GitHub Desktop.
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
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