Metadata-Version: 1.1
Name: botocore-paste
Version: 0.1.1
Summary: Adapt botocore to paste
Home-page: https://github.com/gjo/botocore_paste
Author: OCHIAI, Gouji
Author-email: gjo.ext@gmail.com
License: BSD
Description: .. -*- coding: utf-8 -*-
        
        ==============
        botocore_paste
        ==============
        
        Utility for ``botocore.session.get_session()``
        
        
        Install
        =======
        
        from PyPI::
        
          pip install botocore_paste
        
        from source::
        
          $ pip install -e .
        
        
        How to use
        ==========
        
        If you use ``pyramid``::
        
          import botocore_paste
        
          def main(global_config, **settings):
              boto_session = botocore_paste.session_from_config(settings)
              config = Configurator(settings=settings)
        
              # Some your configuration
        
              return config.make_wsgi_app()
        
        
        Configuration Keys
        ==================
        
        See ``botocore.session.Session``'s Documents.
        
        Example ini-file::
        
          botocore.profile =
          botocore.credentials_file = ~/.aws/credentials
          botocore.config_file = ~/.aws/config
          botocore.metadata_service_num_attempts = 1
          botocore.provider = aws
          botocore.region =
          botocore.data_path =
          botocore.metadata_service_timeout = 1
        
        
        All keys are not mandatory.
        If you don't write any keys, ``botocore.session.Session`` instances are
        created by ``default``.
        
        
        Change History
        ==============
        
        0.1.1 - 2015-04-01
        ------------------
        - typo
        
        0.1 - 2015-04-01
        ----------------
        - Initial release.
        
Platform: UNKNOWN
Classifier: Framework :: Paste
Classifier: Framework :: Pyramid
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.4
