├── LICENSE ├── README.md ├── imgs ├── 1_create.png ├── 2_create_details.png ├── 3_credentials.png ├── 4_access_token.png ├── 5_cloudformation.png ├── 6_filledout.png └── example.png ├── lambda_functions ├── LICENSE ├── build.sh ├── mask.png ├── process_stream.py └── requirements.txt ├── streaming_app └── stream.py ├── syncbuckets.sh ├── template-eu-west-1.yaml ├── template-us-east-1.yaml ├── template-us-west-2.yaml └── workshop.pptx /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/README.md -------------------------------------------------------------------------------- /imgs/1_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/imgs/1_create.png -------------------------------------------------------------------------------- /imgs/2_create_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/imgs/2_create_details.png -------------------------------------------------------------------------------- /imgs/3_credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/imgs/3_credentials.png -------------------------------------------------------------------------------- /imgs/4_access_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/imgs/4_access_token.png -------------------------------------------------------------------------------- /imgs/5_cloudformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/imgs/5_cloudformation.png -------------------------------------------------------------------------------- /imgs/6_filledout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/imgs/6_filledout.png -------------------------------------------------------------------------------- /imgs/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/imgs/example.png -------------------------------------------------------------------------------- /lambda_functions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/lambda_functions/LICENSE -------------------------------------------------------------------------------- /lambda_functions/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/lambda_functions/build.sh -------------------------------------------------------------------------------- /lambda_functions/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/lambda_functions/mask.png -------------------------------------------------------------------------------- /lambda_functions/process_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/lambda_functions/process_stream.py -------------------------------------------------------------------------------- /lambda_functions/requirements.txt: -------------------------------------------------------------------------------- 1 | python-twitter 2 | boto3 3 | fleece 4 | -------------------------------------------------------------------------------- /streaming_app/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/streaming_app/stream.py -------------------------------------------------------------------------------- /syncbuckets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/syncbuckets.sh -------------------------------------------------------------------------------- /template-eu-west-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/template-eu-west-1.yaml -------------------------------------------------------------------------------- /template-us-east-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/template-us-east-1.yaml -------------------------------------------------------------------------------- /template-us-west-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/template-us-west-2.yaml -------------------------------------------------------------------------------- /workshop.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-rekognition-workshop-twitter-bot/HEAD/workshop.pptx --------------------------------------------------------------------------------