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
| { | |
| "kind": "webfonts#webfontList", | |
| "items": [ | |
| { | |
| "kind": "webfonts#webfont", | |
| "family": "ABeeZee", | |
| "category": "sans-serif", | |
| "variants": [ | |
| "regular", | |
| "italic" |
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
| iso_4217_currencies = { | |
| "AED": "United Arab Emirates dirham United Arab Emirates", | |
| "AFN": "Afghan afghani", | |
| "ALL": "Albanian lek ", | |
| "AMD": "Armenian dram", | |
| "ANG": "Netherlands Antillean guilder", | |
| "AOA": "Angolan kwanza", | |
| "ARS": "Argentine peso", | |
| "AUD": "Australian dollar", | |
| "AWG": "Aruban florin", |
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
| import boto | |
| import boto.s3 | |
| import os.path | |
| import sys | |
| # Fill these in - you get them when you sign up for S3 | |
| AWS_ACCESS_KEY_ID = '' | |
| AWS_ACCESS_KEY_SECRET = '' | |
| # Fill in info on data to upload |
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 | |
| import os | |
| import sys | |
| import boto3 | |
| # get an access token, local (from) directory, and S3 (to) directory | |
| # from the command-line | |
| local_directory, bucket, destination = sys.argv[1:4] |
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 | |
| import os | |
| import sys | |
| import boto3 | |
| # get an access token, local (from) directory, and S3 (to) directory | |
| # from the command-line | |
| local_directory, bucket, destination = sys.argv[1:4] |