Metadata-Version: 1.1
Name: awstwitter
Version: 1.0.2
Summary: A Python module to make it easy to connect to twitter from AWS
Home-page: https://github.com/hsbakshi/awstwitter
Author: Hrishi Bakshi
Author-email: bakshi.hrishikesh@gmail.com
License: Apache License 2.0
Description-Content-Type: UNKNOWN
Description: # awstwitter
        Securely store Twitter API credentials in AWS EC2 Systems manager.
        
        The secret credentials are encrypted using KMS.
        
        Usage:
        
        ```python
        import awstwitter
        
        credentials = awstwitter.retrieve_credentials('my_namespace')
        
        print 'consumer_key', credentials['consumer_key']
        print 'consumer_secret', credentials['consumer_secret']
        print 'access_token', credentials['access_token']
        print 'access_token_secret', credentials['access_token_secret']
        ```
        
Keywords: Allow AWS Serverless applications to connect to Twitter
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
