{"id":13419511,"url":"https://github.com/boto/boto3","last_synced_at":"2025-09-09T21:07:29.915Z","repository":{"id":21456234,"uuid":"24774658","full_name":"boto/boto3","owner":"boto","description":"AWS SDK for Python","archived":false,"fork":false,"pushed_at":"2025-04-30T19:55:55.000Z","size":9235,"stargazers_count":9320,"open_issues_count":208,"forks_count":1905,"subscribers_count":234,"default_branch":"develop","last_synced_at":"2025-04-30T20:47:56.944Z","etag":null,"topics":["aws","aws-sdk","cloud","cloud-management","python"],"latest_commit_sha":null,"homepage":"https://aws.amazon.com/sdk-for-python/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"Rogerh91/Springboard-Blog-Tutorials","license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/boto.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.rst","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2014-10-03T21:38:03.000Z","updated_at":"2025-04-30T19:55:59.000Z","dependencies_parsed_at":"2024-01-16T23:58:13.670Z","dependency_job_id":"19201a12-f0ca-43f1-bb82-10ab998c6557","html_url":"https://github.com/boto/boto3","commit_stats":{"total_commits":4286,"total_committers":166,"mean_commits":"25.819277108433734","dds":0.3331777881474568,"last_synced_commit":"9e12dfd95a223be1ef4a95219f94830a1a16b96d"},"previous_names":[],"tags_count":1778,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boto%2Fboto3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boto%2Fboto3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boto%2Fboto3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boto%2Fboto3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/boto","download_url":"https://codeload.github.com/boto/boto3/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251962031,"owners_count":21671969,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","aws-sdk","cloud","cloud-management","python"],"created_at":"2024-07-30T22:01:17.032Z","updated_at":"2025-05-05T15:24:17.524Z","avatar_url":"https://github.com/boto.png","language":"Python","readme":"===============================\nBoto3 - The AWS SDK for Python\n===============================\n\n|Version| |Python| |License|\n\nBoto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for\nPython, which allows Python developers to write software that makes use\nof services like Amazon S3 and Amazon EC2. You can find the latest, most\nup to date, documentation at our `doc site`_, including a list of\nservices that are supported.\n\nBoto3 is maintained and published by `Amazon Web Services`_.\n\nBoto (pronounced boh-toh) was named after the fresh water dolphin native to the Amazon river. The name was chosen by the author of the original Boto library, Mitch Garnaat, as a reference to the company.\n\nNotices\n-------\n\nOn 2025-04-22, support for Python 3.8 ended for Boto3. This follows the\nPython Software Foundation `end of support \u003chttps://peps.python.org/pep-0569/#lifespan\u003e`__\nfor the runtime which occurred on 2024-10-07.\nFor more information, see this `blog post \u003chttps://aws.amazon.com/blogs/developer/python-support-policy-updates-for-aws-sdks-and-tools/\u003e`__.\n\n.. _boto: https://docs.pythonboto.org/\n.. _`doc site`: https://boto3.amazonaws.com/v1/documentation/api/latest/index.html\n.. _`Amazon Web Services`: https://aws.amazon.com/what-is-aws/\n.. |Python| image:: https://img.shields.io/pypi/pyversions/boto3.svg?style=flat\n    :target: https://pypi.python.org/pypi/boto3/\n    :alt: Python Versions\n.. |Version| image:: http://img.shields.io/pypi/v/boto3.svg?style=flat\n    :target: https://pypi.python.org/pypi/boto3/\n    :alt: Package Version\n.. |License| image:: http://img.shields.io/pypi/l/boto3.svg?style=flat\n    :target: https://github.com/boto/boto3/blob/develop/LICENSE\n    :alt: License\n\nGetting Started\n---------------\nAssuming that you have a supported version of Python installed, you can first\nset up your environment with:\n\n.. code-block:: sh\n\n    $ python -m venv .venv\n    ...\n    $ . .venv/bin/activate\n\nThen, you can install boto3 from PyPI with:\n\n.. code-block:: sh\n\n    $ python -m pip install boto3\n\nor install from source with:\n\n.. code-block:: sh\n\n    $ git clone https://github.com/boto/boto3.git\n    $ cd boto3\n    $ python -m pip install -r requirements.txt\n    $ python -m pip install -e .\n\n\nUsing Boto3\n~~~~~~~~~~~~~~\nAfter installing boto3\n\nNext, set up credentials (in e.g. ``~/.aws/credentials``):\n\n.. code-block:: ini\n\n    [default]\n    aws_access_key_id = YOUR_KEY\n    aws_secret_access_key = YOUR_SECRET\n\nThen, set up a default region (in e.g. ``~/.aws/config``):\n\n.. code-block:: ini\n\n   [default]\n   region=us-east-1\n\nOther credential configuration methods can be found `here \u003chttps://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html\u003e`__\n\nThen, from a Python interpreter:\n\n.. code-block:: python\n\n    \u003e\u003e\u003e import boto3\n    \u003e\u003e\u003e s3 = boto3.resource('s3')\n    \u003e\u003e\u003e for bucket in s3.buckets.all():\n            print(bucket.name)\n\nRunning Tests\n~~~~~~~~~~~~~\nYou can run tests in all supported Python versions using ``tox``. By default,\nit will run all of the unit and functional tests, but you can also specify your own\n``pytest`` options. Note that this requires that you have all supported\nversions of Python installed, otherwise you must pass ``-e`` or run the\n``pytest`` command directly:\n\n.. code-block:: sh\n\n    $ tox\n    $ tox -- unit/test_session.py\n    $ tox -e py26,py33 -- integration/\n\nYou can also run individual tests with your default Python version:\n\n.. code-block:: sh\n\n    $ pytest tests/unit\n\n\nGetting Help\n------------\n\nWe use GitHub issues for tracking bugs and feature requests and have limited\nbandwidth to address them. Please use these community resources for getting\nhelp:\n\n* Ask a question on `Stack Overflow \u003chttps://stackoverflow.com/\u003e`__ and tag it with `boto3 \u003chttps://stackoverflow.com/questions/tagged/boto3\u003e`__\n* Open a support ticket with `AWS Support \u003chttps://console.aws.amazon.com/support/home#/\u003e`__\n* If it turns out that you may have found a bug, please `open an issue \u003chttps://github.com/boto/boto3/issues/new\u003e`__\n\n\nContributing\n------------\n\nWe value feedback and contributions from our community. Whether it's a bug report, new feature, correction, or additional documentation, we welcome your issues and pull requests. Please read through this `CONTRIBUTING \u003chttps://github.com/boto/boto3/blob/develop/CONTRIBUTING.rst\u003e`__ document before submitting any issues or pull requests to ensure we have all the necessary information to effectively respond to your contribution.\n\n\nMaintenance and Support for SDK Major Versions\n----------------------------------------------\n\nBoto3 was made generally available on 06/22/2015 and is currently in the full support phase of the availability life cycle.\n\nFor information about maintenance and support for SDK major versions and their underlying dependencies, see the following in the AWS SDKs and Tools Shared Configuration and Credentials Reference Guide:\n\n* `AWS SDKs and Tools Maintenance Policy \u003chttps://docs.aws.amazon.com/sdkref/latest/guide/maint-policy.html\u003e`__\n* `AWS SDKs and Tools Version Support Matrix \u003chttps://docs.aws.amazon.com/sdkref/latest/guide/version-support-matrix.html\u003e`__\n\n\nMore Resources\n--------------\n\n* `NOTICE \u003chttps://github.com/boto/boto3/blob/develop/NOTICE\u003e`__\n* `Changelog \u003chttps://github.com/boto/boto3/blob/develop/CHANGELOG.rst\u003e`__\n* `License \u003chttps://github.com/boto/boto3/blob/develop/LICENSE\u003e`__\n","funding_links":[],"categories":["Python","Third-party APIs","资源列表","HarmonyOS","第三方api","第三方 API","python","Third-party APIs [🔝](#readme)","SDKs and Samples","Awesome Python","Uncategorized","Database Clients","Assets:"],"sub_categories":["第三方 API","Windows Manager","Python SDK","Third-party APIs","Uncategorized"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboto%2Fboto3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fboto%2Fboto3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboto%2Fboto3/lists"}