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/env python | |
# -*- coding: utf-8 -*- | |
import argparse | |
import json | |
try: | |
import boto3 | |
import yaml | |
except ImportError: | |
print '*******************************' |
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 boto3 | |
def lambda_handler(event, context): | |
pipeline_name=event['PIPELINE_NAME'] | |
stage_name=event['STAGE_NAME'] | |
action_name=event['ACTION_NAME'] | |
cp = boto3.client('codepipeline') | |
state = cp.get_pipeline_state(name=pipeline_name) |
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 boto3 | |
import os | |
import gzip | |
from datetime import datetime | |
from botocore.awsrequest import AWSRequest | |
from botocore.auth import SigV4Auth | |
from botocore.endpoint import BotocoreHTTPSession | |
from botocore.credentials import Credentials | |
def lambda_handler(event, context): |
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/env python | |
import twitter | |
import boto3 | |
import os | |
keyword = '#reinvent' | |
lang = 'en' | |
region = 'us-east-1' | |
size = 100 * 100 |
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/env python | |
import twitter | |
import boto3 | |
import os | |
keyword = 'dev.classmethod.jp' | |
region = 'us-east-1' | |
size = 10 * 100 |
OlderNewer