This file is indexed.

/usr/lib/python2.7/dist-packages/boto-2.34.0.egg-info/PKG-INFO is in python-boto 2.34.0-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
Metadata-Version: 1.1
Name: boto
Version: 2.34.0
Summary: Amazon Web Services Library
Home-page: https://github.com/boto/boto/
Author: Mitch Garnaat
Author-email: mitch@garnaat.com
License: MIT
Description: ####
        boto
        ####
        boto 2.34.0
        
        Released: 23-Oct-2014
        
        .. image:: https://travis-ci.org/boto/boto.svg?branch=develop
                :target: https://travis-ci.org/boto/boto
        
        .. image:: https://pypip.in/d/boto/badge.svg
                :target: https://pypi.python.org/pypi/boto/
        
        ************
        Introduction
        ************
        
        Boto is a Python package that provides interfaces to Amazon Web Services.
        Currently, all features work with Python 2.6 and 2.7. Work is under way to
        support Python 3.3+ in the same codebase. Modules are being ported one at
        a time with the help of the open source community, so please check below
        for compatibility with Python 3.3+.
        
        To port a module to Python 3.3+, please view our `Contributing Guidelines`_
        and the `Porting Guide`_. If you would like, you can open an issue to let
        others know about your work in progress. Tests **must** pass on Python
        2.6, 2.7, 3.3, and 3.4 for pull requests to be accepted.
        
        At the moment, boto supports:
        
        * Compute
        
          * Amazon Elastic Compute Cloud (EC2) (Python 3)
          * Amazon Elastic Map Reduce (EMR) (Python 3)
          * AutoScaling (Python 3)
          * Amazon Kinesis (Python 3)
        
        * Content Delivery
        
          * Amazon CloudFront (Python 3)
        
        * Database
        
          * Amazon Relational Data Service (RDS)
          * Amazon DynamoDB (Python 3)
          * Amazon SimpleDB (Python 3)
          * Amazon ElastiCache (Python 3)
          * Amazon Redshift (Python 3)
        
        * Deployment and Management
        
          * AWS Elastic Beanstalk (Python 3)
          * AWS CloudFormation (Python 3)
          * AWS Data Pipeline (Python 3)
          * AWS Opsworks (Python 3)
          * AWS CloudTrail (Python 3)
        
        * Identity & Access
        
          * AWS Identity and Access Management (IAM) (Python 3)
        
        * Application Services
        
          * Amazon CloudSearch (Python 3)
          * Amazon Elastic Transcoder (Python 3)
          * Amazon Simple Workflow Service (SWF) (Python 3)
          * Amazon Simple Queue Service (SQS) (Python 3)
          * Amazon Simple Notification Server (SNS) (Python 3)
          * Amazon Simple Email Service (SES) (Python 3)
          * Amazon Cognito Identity (Python 3)
          * Amazon Cognito Sync (Python 3)
        
        * Monitoring
        
          * Amazon CloudWatch (EC2 Only) (Python 3)
          * Amazon CloudWatch Logs (Python 3)
        
        * Networking
        
          * Amazon Route53 (Python 3)
          * Amazon Route 53 Domains (Python 3)
          * Amazon Virtual Private Cloud (VPC) (Python 3)
          * Elastic Load Balancing (ELB) (Python 3)
          * AWS Direct Connect (Python 3)
        
        * Payments and Billing
        
          * Amazon Flexible Payment Service (FPS)
        
        * Storage
        
          * Amazon Simple Storage Service (S3) (Python 3)
          * Amazon Glacier (Python 3)
          * Amazon Elastic Block Store (EBS)
          * Google Cloud Storage
        
        * Workforce
        
          * Amazon Mechanical Turk
        
        * Other
        
          * Marketplace Web Services (Python 3)
          * AWS Support (Python 3)
        
        The goal of boto is to support the full breadth and depth of Amazon
        Web Services.  In addition, boto provides support for other public
        services such as Google Storage in addition to private cloud systems
        like Eucalyptus, OpenStack and Open Nebula.
        
        Boto is developed mainly using Python 2.6.6 and Python 2.7.3 on Mac OSX
        and Ubuntu Maverick.  It is known to work on other Linux distributions
        and on Windows.  Most of Boto requires no additional libraries or packages
        other than those that are distributed with Python.  Efforts are made
        to keep boto compatible with Python 2.5.x but no guarantees are made.
        
        ************
        Installation
        ************
        
        Install via `pip`_:
        
        ::
        
            $ pip install boto
        
        Install from source:
        
        ::
        
            $ git clone git://github.com/boto/boto.git
            $ cd boto
            $ python setup.py install
        
        **********
        ChangeLogs
        **********
        
        To see what has changed over time in boto, you can check out the
        release notes at `http://docs.pythonboto.org/en/latest/#release-notes`
        
        ***************************
        Finding Out More About Boto
        ***************************
        
        The main source code repository for boto can be found on `github.com`_.
        The boto project uses the `gitflow`_ model for branching.
        
        `Online documentation`_ is also available. The online documentation includes
        full API documentation as well as Getting Started Guides for many of the boto
        modules.
        
        Boto releases can be found on the `Python Cheese Shop`_.
        
        Join our IRC channel `#boto` on FreeNode.
        Webchat IRC channel: http://webchat.freenode.net/?channels=boto
        
        Join the `boto-users Google Group`_.
        
        *************************
        Getting Started with Boto
        *************************
        
        Your credentials can be passed into the methods that create
        connections.  Alternatively, boto will check for the existence of the
        following environment variables to ascertain your credentials:
        
        **AWS_ACCESS_KEY_ID** - Your AWS Access Key ID
        
        **AWS_SECRET_ACCESS_KEY** - Your AWS Secret Access Key
        
        Credentials and other boto-related settings can also be stored in a
        boto config file.  See `this`_ for details.
        
        .. _Contributing Guidelines: https://github.com/boto/boto/blob/develop/CONTRIBUTING
        .. _Porting Guide: http://boto.readthedocs.org/en/latest/porting_guide.html
        .. _pip: http://www.pip-installer.org/
        .. _release notes: https://github.com/boto/boto/wiki
        .. _github.com: http://github.com/boto/boto
        .. _Online documentation: http://docs.pythonboto.org
        .. _Python Cheese Shop: http://pypi.python.org/pypi/boto
        .. _this: http://code.google.com/p/boto/wiki/BotoConfig
        .. _gitflow: http://nvie.com/posts/a-successful-git-branching-model/
        .. _neo: https://github.com/boto/boto/tree/neo
        .. _boto-users Google Group: https://groups.google.com/forum/?fromgroups#!forum/boto-users
        
Platform: Posix; MacOS X; Windows
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4