Initial commit
This commit is contained in:
@@ -0,0 +1,127 @@
|
||||
===============================
|
||||
Boto 3 - The AWS SDK for Python
|
||||
===============================
|
||||
|
||||
|Build Status| |Version| |Gitter|
|
||||
|
||||
Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for
|
||||
Python, which allows Python developers to write software that makes use
|
||||
of services like Amazon S3 and Amazon EC2. You can find the latest, most
|
||||
up to date, documentation at our `doc site`_, including a list of
|
||||
services that are supported.
|
||||
|
||||
|
||||
.. _boto: https://docs.pythonboto.org/
|
||||
.. _`doc site`: https://boto3.amazonaws.com/v1/documentation/api/latest/index.html
|
||||
.. |Build Status| image:: http://img.shields.io/travis/boto/boto3/develop.svg?style=flat
|
||||
:target: https://travis-ci.org/boto/boto3
|
||||
:alt: Build Status
|
||||
.. |Gitter| image:: https://badges.gitter.im/boto/boto3.svg
|
||||
:target: https://gitter.im/boto/boto3
|
||||
:alt: Gitter
|
||||
.. |Downloads| image:: http://img.shields.io/pypi/dm/boto3.svg?style=flat
|
||||
:target: https://pypi.python.org/pypi/boto3/
|
||||
:alt: Downloads
|
||||
.. |Version| image:: http://img.shields.io/pypi/v/boto3.svg?style=flat
|
||||
:target: https://pypi.python.org/pypi/boto3/
|
||||
:alt: Version
|
||||
.. |License| image:: http://img.shields.io/pypi/l/boto3.svg?style=flat
|
||||
:target: https://github.com/boto/boto3/blob/develop/LICENSE
|
||||
:alt: License
|
||||
|
||||
Quick Start
|
||||
-----------
|
||||
First, install the library and set a default region:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
$ pip install boto3
|
||||
|
||||
Next, set up credentials (in e.g. ``~/.aws/credentials``):
|
||||
|
||||
.. code-block:: ini
|
||||
|
||||
[default]
|
||||
aws_access_key_id = YOUR_KEY
|
||||
aws_secret_access_key = YOUR_SECRET
|
||||
|
||||
Then, set up a default region (in e.g. ``~/.aws/config``):
|
||||
|
||||
.. code-block:: ini
|
||||
|
||||
[default]
|
||||
region=us-east-1
|
||||
|
||||
Then, from a Python interpreter:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
>>> import boto3
|
||||
>>> s3 = boto3.resource('s3')
|
||||
>>> for bucket in s3.buckets.all():
|
||||
print(bucket.name)
|
||||
|
||||
Development
|
||||
-----------
|
||||
|
||||
Getting Started
|
||||
~~~~~~~~~~~~~~~
|
||||
Assuming that you have Python and ``virtualenv`` installed, set up your
|
||||
environment and install the required dependencies like this instead of
|
||||
the ``pip install boto3`` defined above:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
$ git clone https://github.com/boto/boto3.git
|
||||
$ cd boto3
|
||||
$ virtualenv venv
|
||||
...
|
||||
$ . venv/bin/activate
|
||||
$ pip install -r requirements.txt
|
||||
$ pip install -e .
|
||||
|
||||
Running Tests
|
||||
~~~~~~~~~~~~~
|
||||
You can run tests in all supported Python versions using ``tox``. By default,
|
||||
it will run all of the unit and functional tests, but you can also specify your own
|
||||
``nosetests`` options. Note that this requires that you have all supported
|
||||
versions of Python installed, otherwise you must pass ``-e`` or run the
|
||||
``nosetests`` command directly:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
$ tox
|
||||
$ tox -- unit/test_session.py
|
||||
$ tox -e py26,py33 -- integration/
|
||||
|
||||
You can also run individual tests with your default Python version:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
$ nosetests tests/unit
|
||||
|
||||
Generating Documentation
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
Sphinx is used for documentation. You can generate HTML locally with the
|
||||
following:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
$ pip install -r requirements-docs.txt
|
||||
$ cd docs
|
||||
$ make html
|
||||
|
||||
|
||||
Getting Help
|
||||
------------
|
||||
|
||||
We use GitHub issues for tracking bugs and feature requests and have limited
|
||||
bandwidth to address them. Please use these community resources for getting
|
||||
help:
|
||||
|
||||
* Ask a question on `Stack Overflow <https://stackoverflow.com/>`__ and tag it with `boto3 <https://stackoverflow.com/questions/tagged/boto3>`__
|
||||
* Come join the AWS Python community chat on `gitter <https://gitter.im/boto/boto3>`__
|
||||
* Open a support ticket with `AWS Support <https://console.aws.amazon.com/support/home#/>`__
|
||||
* If it turns out that you may have found a bug, please `open an issue <https://github.com/boto/boto3/issues/new>`__
|
||||
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
pip
|
||||
@@ -0,0 +1,153 @@
|
||||
Metadata-Version: 2.0
|
||||
Name: boto3
|
||||
Version: 1.10.14
|
||||
Summary: The AWS SDK for Python
|
||||
Home-page: https://github.com/boto/boto3
|
||||
Author: Amazon Web Services
|
||||
Author-email: UNKNOWN
|
||||
License: Apache License 2.0
|
||||
Platform: UNKNOWN
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: Natural Language :: English
|
||||
Classifier: License :: OSI Approved :: Apache Software License
|
||||
Classifier: Programming Language :: Python
|
||||
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
|
||||
Classifier: Programming Language :: Python :: 3.5
|
||||
Classifier: Programming Language :: Python :: 3.6
|
||||
Classifier: Programming Language :: Python :: 3.7
|
||||
Requires-Dist: botocore>=1.13.14,<1.14.0
|
||||
Requires-Dist: jmespath>=0.7.1,<1.0.0
|
||||
Requires-Dist: s3transfer>=0.2.0,<0.3.0
|
||||
|
||||
===============================
|
||||
Boto 3 - The AWS SDK for Python
|
||||
===============================
|
||||
|
||||
|Build Status| |Version| |Gitter|
|
||||
|
||||
Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for
|
||||
Python, which allows Python developers to write software that makes use
|
||||
of services like Amazon S3 and Amazon EC2. You can find the latest, most
|
||||
up to date, documentation at our `doc site`_, including a list of
|
||||
services that are supported.
|
||||
|
||||
|
||||
.. _boto: https://docs.pythonboto.org/
|
||||
.. _`doc site`: https://boto3.amazonaws.com/v1/documentation/api/latest/index.html
|
||||
.. |Build Status| image:: http://img.shields.io/travis/boto/boto3/develop.svg?style=flat
|
||||
:target: https://travis-ci.org/boto/boto3
|
||||
:alt: Build Status
|
||||
.. |Gitter| image:: https://badges.gitter.im/boto/boto3.svg
|
||||
:target: https://gitter.im/boto/boto3
|
||||
:alt: Gitter
|
||||
.. |Downloads| image:: http://img.shields.io/pypi/dm/boto3.svg?style=flat
|
||||
:target: https://pypi.python.org/pypi/boto3/
|
||||
:alt: Downloads
|
||||
.. |Version| image:: http://img.shields.io/pypi/v/boto3.svg?style=flat
|
||||
:target: https://pypi.python.org/pypi/boto3/
|
||||
:alt: Version
|
||||
.. |License| image:: http://img.shields.io/pypi/l/boto3.svg?style=flat
|
||||
:target: https://github.com/boto/boto3/blob/develop/LICENSE
|
||||
:alt: License
|
||||
|
||||
Quick Start
|
||||
-----------
|
||||
First, install the library and set a default region:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
$ pip install boto3
|
||||
|
||||
Next, set up credentials (in e.g. ``~/.aws/credentials``):
|
||||
|
||||
.. code-block:: ini
|
||||
|
||||
[default]
|
||||
aws_access_key_id = YOUR_KEY
|
||||
aws_secret_access_key = YOUR_SECRET
|
||||
|
||||
Then, set up a default region (in e.g. ``~/.aws/config``):
|
||||
|
||||
.. code-block:: ini
|
||||
|
||||
[default]
|
||||
region=us-east-1
|
||||
|
||||
Then, from a Python interpreter:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
>>> import boto3
|
||||
>>> s3 = boto3.resource('s3')
|
||||
>>> for bucket in s3.buckets.all():
|
||||
print(bucket.name)
|
||||
|
||||
Development
|
||||
-----------
|
||||
|
||||
Getting Started
|
||||
~~~~~~~~~~~~~~~
|
||||
Assuming that you have Python and ``virtualenv`` installed, set up your
|
||||
environment and install the required dependencies like this instead of
|
||||
the ``pip install boto3`` defined above:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
$ git clone https://github.com/boto/boto3.git
|
||||
$ cd boto3
|
||||
$ virtualenv venv
|
||||
...
|
||||
$ . venv/bin/activate
|
||||
$ pip install -r requirements.txt
|
||||
$ pip install -e .
|
||||
|
||||
Running Tests
|
||||
~~~~~~~~~~~~~
|
||||
You can run tests in all supported Python versions using ``tox``. By default,
|
||||
it will run all of the unit and functional tests, but you can also specify your own
|
||||
``nosetests`` options. Note that this requires that you have all supported
|
||||
versions of Python installed, otherwise you must pass ``-e`` or run the
|
||||
``nosetests`` command directly:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
$ tox
|
||||
$ tox -- unit/test_session.py
|
||||
$ tox -e py26,py33 -- integration/
|
||||
|
||||
You can also run individual tests with your default Python version:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
$ nosetests tests/unit
|
||||
|
||||
Generating Documentation
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
Sphinx is used for documentation. You can generate HTML locally with the
|
||||
following:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
$ pip install -r requirements-docs.txt
|
||||
$ cd docs
|
||||
$ make html
|
||||
|
||||
|
||||
Getting Help
|
||||
------------
|
||||
|
||||
We use GitHub issues for tracking bugs and feature requests and have limited
|
||||
bandwidth to address them. Please use these community resources for getting
|
||||
help:
|
||||
|
||||
* Ask a question on `Stack Overflow <https://stackoverflow.com/>`__ and tag it with `boto3 <https://stackoverflow.com/questions/tagged/boto3>`__
|
||||
* Come join the AWS Python community chat on `gitter <https://gitter.im/boto/boto3>`__
|
||||
* Open a support ticket with `AWS Support <https://console.aws.amazon.com/support/home#/>`__
|
||||
* If it turns out that you may have found a bug, please `open an issue <https://github.com/boto/boto3/issues/new>`__
|
||||
|
||||
|
||||
@@ -0,0 +1,99 @@
|
||||
boto3-1.10.14.dist-info/DESCRIPTION.rst,sha256=vypeZhRdBo6qYNG3TJCxtVypwHE3msh1eI-onAWEvrI,3771
|
||||
boto3-1.10.14.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
boto3-1.10.14.dist-info/METADATA,sha256=dNS64ibV-phtabaWJQBhPfKm1dU44Lxh4n2wfD3uKC0,4755
|
||||
boto3-1.10.14.dist-info/RECORD,,
|
||||
boto3-1.10.14.dist-info/WHEEL,sha256=AvR0WeTpDaxT645bl5FQxUK6NPsTls2ttpcGJg3j1Xg,110
|
||||
boto3-1.10.14.dist-info/metadata.json,sha256=GiSfid0Km6ic4AwPZEe0_nB3kW2XWg2kvR_zflQ4ZxI,1062
|
||||
boto3-1.10.14.dist-info/top_level.txt,sha256=MP6_SI1GcPseXodd3Ykt5F_mCBsrUksiziLxjEZKGUU,6
|
||||
boto3/__init__.py,sha256=qCDpFd5omrVRW4deaki4XkxidAmmgeHy9bsRNBhKsD8,3340
|
||||
boto3/__pycache__/__init__.cpython-37.pyc,,
|
||||
boto3/__pycache__/compat.cpython-37.pyc,,
|
||||
boto3/__pycache__/exceptions.cpython-37.pyc,,
|
||||
boto3/__pycache__/session.cpython-37.pyc,,
|
||||
boto3/__pycache__/utils.cpython-37.pyc,,
|
||||
boto3/compat.py,sha256=F83Twa5yWeGNo3ADZhgn5Px6GkYRu2miQ9t1ZJ3-USg,1597
|
||||
boto3/data/cloudformation/2010-05-15/resources-1.json,sha256=5mFVKJVtbVoHyPdHSyNfZ5mpkgCAws5PhnveSu4qzdI,5110
|
||||
boto3/data/cloudwatch/2010-08-01/resources-1.json,sha256=q4AgE8F4pbscd-2U3NYSGAzK55zpMyOQGr83JUxbZXI,11690
|
||||
boto3/data/dynamodb/2012-08-10/resources-1.json,sha256=hBLa1Jt7bdT557U9A7UcSi8SCpONKzdbtDRTzjM1-Y0,3849
|
||||
boto3/data/ec2/2014-10-01/resources-1.json,sha256=tMG1AMYP2ksnPWY6-3l8DB-EhKsSNtAO9YHhvHqBKu0,68469
|
||||
boto3/data/ec2/2015-03-01/resources-1.json,sha256=tMG1AMYP2ksnPWY6-3l8DB-EhKsSNtAO9YHhvHqBKu0,68469
|
||||
boto3/data/ec2/2015-04-15/resources-1.json,sha256=tMG1AMYP2ksnPWY6-3l8DB-EhKsSNtAO9YHhvHqBKu0,68469
|
||||
boto3/data/ec2/2015-10-01/resources-1.json,sha256=SOfYX2c1KgvnxMO2FCdJpV42rJWNMwVhlFAXhvUPTzA,76564
|
||||
boto3/data/ec2/2016-04-01/resources-1.json,sha256=SOfYX2c1KgvnxMO2FCdJpV42rJWNMwVhlFAXhvUPTzA,76564
|
||||
boto3/data/ec2/2016-09-15/resources-1.json,sha256=SOfYX2c1KgvnxMO2FCdJpV42rJWNMwVhlFAXhvUPTzA,76564
|
||||
boto3/data/ec2/2016-11-15/resources-1.json,sha256=vx7YiL-sUvBFeo4SZ81G7Qa2Hy-y6xY4z2YlSx7_wEw,76922
|
||||
boto3/data/glacier/2012-06-01/resources-1.json,sha256=GT5qWQLGeXtrHgTDNG23Mrpyweg6O0Udgd139BuNTVs,19940
|
||||
boto3/data/iam/2010-05-08/resources-1.json,sha256=PsOT9yBqSJtluBFHCVRsg6k6Ly2VkSYODnYxSl0DVOc,50357
|
||||
boto3/data/opsworks/2013-02-18/resources-1.json,sha256=Y6ygEyegsbYA1gGZn-Ad2yuDd3jUCOt2UKrW_b2YBeM,4136
|
||||
boto3/data/s3/2006-03-01/resources-1.json,sha256=VeKALhMRqv7fyDHMLOM5_RzXUEuDdg_n6OIRi3sdB-o,37204
|
||||
boto3/data/sns/2010-03-31/resources-1.json,sha256=7zmKQhafgsRDu4U1yiw3NXHz-zJhHKrOmtuoYlxQP-s,9091
|
||||
boto3/data/sqs/2012-11-05/resources-1.json,sha256=LRIIr5BId3UDeuBfLn-vRiWsSZCM9_ynqdxF8uzHgy8,6545
|
||||
boto3/docs/__init__.py,sha256=z5WyRX2qgsLBS0k6dXTGUJdBi3ne1SrK5fUnQtuFX3c,1529
|
||||
boto3/docs/__pycache__/__init__.cpython-37.pyc,,
|
||||
boto3/docs/__pycache__/action.cpython-37.pyc,,
|
||||
boto3/docs/__pycache__/attr.cpython-37.pyc,,
|
||||
boto3/docs/__pycache__/base.cpython-37.pyc,,
|
||||
boto3/docs/__pycache__/client.cpython-37.pyc,,
|
||||
boto3/docs/__pycache__/collection.cpython-37.pyc,,
|
||||
boto3/docs/__pycache__/docstring.cpython-37.pyc,,
|
||||
boto3/docs/__pycache__/method.cpython-37.pyc,,
|
||||
boto3/docs/__pycache__/resource.cpython-37.pyc,,
|
||||
boto3/docs/__pycache__/service.cpython-37.pyc,,
|
||||
boto3/docs/__pycache__/subresource.cpython-37.pyc,,
|
||||
boto3/docs/__pycache__/utils.cpython-37.pyc,,
|
||||
boto3/docs/__pycache__/waiter.cpython-37.pyc,,
|
||||
boto3/docs/action.py,sha256=PQw4_g-V4HyU-oCV0U6DUwfDO4WTpq6gzjZdmraRVWY,6170
|
||||
boto3/docs/attr.py,sha256=nB4ok-1gw-aAK-9WvFwpTjtnMOHK_xhTabElepcn-iA,2217
|
||||
boto3/docs/base.py,sha256=A5U1w8nTEIoOSxlp-69GxZE4z5Gx30ZzKGhjiTxhpjs,1330
|
||||
boto3/docs/client.py,sha256=4IdVNMzUXyNrKEhBUzzpcHVbZ6gFpPiRI4_zv2hQVdM,1064
|
||||
boto3/docs/collection.py,sha256=PTeJAXmnRP0pVh818fUHXK6u5xZ6afmMR76DtO_yj9E,9721
|
||||
boto3/docs/docstring.py,sha256=j5NEvslBV2FImB2hYox3bzI30AGlOw5nezCCOGxCi1c,2625
|
||||
boto3/docs/method.py,sha256=mbkxc-8O1rCIEepg0-8ykmKWx1kszzNVmGMtY_ZW3EE,2768
|
||||
boto3/docs/resource.py,sha256=stg856hz8SjYCJQSI627Rcqex3Kj9CfpyxXnGpb4Ys0,10988
|
||||
boto3/docs/service.py,sha256=cmBCQ1P4CrJdFoBbHt8RFhbM1rEQ5SVqz2lSDBBvPB4,5479
|
||||
boto3/docs/subresource.py,sha256=g9tnSouUIV1OrG363MifU1vfA4GFX4-VyYXC2LDlHow,4620
|
||||
boto3/docs/utils.py,sha256=49t2YBFujtm4guzbL1s7OeeLVkhvA0nojBfl49pBvU4,5710
|
||||
boto3/docs/waiter.py,sha256=FEBV9uHTonsb1VjtkutI1DuZ0MUEKnrbGzrPUi7IjVk,4046
|
||||
boto3/dynamodb/__init__.py,sha256=PdoVyC_cgVtayx5XDOzBw2cnYL1oYvnd7gJN9AE7I5g,561
|
||||
boto3/dynamodb/__pycache__/__init__.cpython-37.pyc,,
|
||||
boto3/dynamodb/__pycache__/conditions.cpython-37.pyc,,
|
||||
boto3/dynamodb/__pycache__/table.cpython-37.pyc,,
|
||||
boto3/dynamodb/__pycache__/transform.cpython-37.pyc,,
|
||||
boto3/dynamodb/__pycache__/types.cpython-37.pyc,,
|
||||
boto3/dynamodb/conditions.py,sha256=E8E7bJa5bS4UQ0zdsXDfPqKQGUQaiecjB8bloWS8Tjc,14875
|
||||
boto3/dynamodb/table.py,sha256=1B-WgvMpLoMliVVc4lgcWSoMDqP5vjP0CR0oeWveuk0,6293
|
||||
boto3/dynamodb/transform.py,sha256=frEjGCQl9cxRbTfpJht3ulMoGrhwROLyndRW_cKA7Yg,12372
|
||||
boto3/dynamodb/types.py,sha256=YVvXhUVBNRriNC59w62aYUWh6cYM9IFe_TryWIn3E7s,9677
|
||||
boto3/ec2/__init__.py,sha256=PdoVyC_cgVtayx5XDOzBw2cnYL1oYvnd7gJN9AE7I5g,561
|
||||
boto3/ec2/__pycache__/__init__.cpython-37.pyc,,
|
||||
boto3/ec2/__pycache__/createtags.cpython-37.pyc,,
|
||||
boto3/ec2/__pycache__/deletetags.cpython-37.pyc,,
|
||||
boto3/ec2/createtags.py,sha256=95UdoeJ2tVN6boBTZjy67P6_FVym_0jUODLpvsCgQLY,1576
|
||||
boto3/ec2/deletetags.py,sha256=mLHUD0RbYLqCfD4DO_lg0PTxvktpPDVykDaRnVyksz0,1163
|
||||
boto3/examples/cloudfront.rst,sha256=Qy3W9oI-pSy1k-P3DtAlxfL2zP297MQxswwlggvhdng,1389
|
||||
boto3/examples/s3.rst,sha256=-ql1FdEitUStrm-4KxOxC2MGFK8bVwXWqZ8TNlt9ksM,4548
|
||||
boto3/exceptions.py,sha256=jLEQQKg6E7a7ZMcB5eGlGsD3wNZfmRUBEz-xAtt7G_w,3993
|
||||
boto3/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
boto3/resources/__pycache__/__init__.cpython-37.pyc,,
|
||||
boto3/resources/__pycache__/action.cpython-37.pyc,,
|
||||
boto3/resources/__pycache__/base.cpython-37.pyc,,
|
||||
boto3/resources/__pycache__/collection.cpython-37.pyc,,
|
||||
boto3/resources/__pycache__/factory.cpython-37.pyc,,
|
||||
boto3/resources/__pycache__/model.cpython-37.pyc,,
|
||||
boto3/resources/__pycache__/params.cpython-37.pyc,,
|
||||
boto3/resources/__pycache__/response.cpython-37.pyc,,
|
||||
boto3/resources/action.py,sha256=NrCEcYOqeTGkuL1_xqPcioCvaBpbWpVSr4XCKwnXZUc,9500
|
||||
boto3/resources/base.py,sha256=mzaGCFA1xfxtacZ6iaOThu1pz3E1VBuJ8YftbcUdZWY,5054
|
||||
boto3/resources/collection.py,sha256=UkCdWTnFnuwnrlrYbicKAUF1E5p5FMuKHaULAoHPra8,19049
|
||||
boto3/resources/factory.py,sha256=FbT_q4bp1_gyEaMKDirICtMzkcDpG4v3u5yWLKEZKnE,22401
|
||||
boto3/resources/model.py,sha256=OhBJ9LLAzvinlUcyg33HteHU1GAbYHNSLv6Lrk7nmrU,20675
|
||||
boto3/resources/params.py,sha256=EdVlP0Y3x6VAfATySp3LVQuk8ieFWE9DiqQvct0u_gM,6132
|
||||
boto3/resources/response.py,sha256=1QjHOiEsecZ2Ah5v809JFus4YgURibHyiq3CcKSvPYo,11569
|
||||
boto3/s3/__init__.py,sha256=PdoVyC_cgVtayx5XDOzBw2cnYL1oYvnd7gJN9AE7I5g,561
|
||||
boto3/s3/__pycache__/__init__.cpython-37.pyc,,
|
||||
boto3/s3/__pycache__/inject.cpython-37.pyc,,
|
||||
boto3/s3/__pycache__/transfer.cpython-37.pyc,,
|
||||
boto3/s3/inject.py,sha256=NsTUDg1LS8kClcL1dHPddGOagySdz7wlnuZ7_F88Usg,26176
|
||||
boto3/s3/transfer.py,sha256=BW3p5SqUy7EntVfOHrJkGDerx_a2eD51vx3U9fwCQuw,12812
|
||||
boto3/session.py,sha256=hMp381e48grdIpS0_QTq51hrN0Oc4zOpxaoolaml-S0,19614
|
||||
boto3/utils.py,sha256=vQzgyzJ1ZuZ8zSjfwOwIHY94LrlzolNTnb9wQabOdPg,3095
|
||||
@@ -0,0 +1,6 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.24.0)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py2-none-any
|
||||
Tag: py3-none-any
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
{"license": "Apache License 2.0", "name": "boto3", "metadata_version": "2.0", "generator": "bdist_wheel (0.24.0)", "summary": "The AWS SDK for Python", "run_requires": [{"requires": ["botocore>=1.13.14,<1.14.0", "jmespath>=0.7.1,<1.0.0", "s3transfer>=0.2.0,<0.3.0"]}], "version": "1.10.14", "extensions": {"python.details": {"project_urls": {"Home": "https://github.com/boto/boto3"}, "document_names": {"description": "DESCRIPTION.rst"}, "contacts": [{"role": "author", "name": "Amazon Web Services"}]}}, "classifiers": ["Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Natural Language :: English", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7"], "extras": []}
|
||||
@@ -0,0 +1 @@
|
||||
boto3
|
||||
Reference in New Issue
Block a user