{"id":13484678,"url":"https://github.com/boto/botocore","last_synced_at":"2025-05-12T05:24:57.113Z","repository":{"id":5474527,"uuid":"6670942","full_name":"boto/botocore","owner":"boto","description":"The low-level, core functionality of boto3 and the AWS CLI.","archived":false,"fork":false,"pushed_at":"2025-05-09T19:23:47.000Z","size":357411,"stargazers_count":1551,"open_issues_count":175,"forks_count":1121,"subscribers_count":70,"default_branch":"develop","last_synced_at":"2025-05-11T03:09:26.759Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"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.txt","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":"2012-11-13T13:25:36.000Z","updated_at":"2025-05-10T16:51:27.000Z","dependencies_parsed_at":"2024-01-12T00:49:57.306Z","dependency_job_id":"2389cd19-d22b-4eb9-aa1a-5b0db20d230a","html_url":"https://github.com/boto/botocore","commit_stats":{"total_commits":8333,"total_committers":203,"mean_commits":41.04926108374384,"dds":0.5407416296651866,"last_synced_commit":"c5ae58387fafff345b1472e282e568318fed7f4c"},"previous_names":[],"tags_count":2187,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boto%2Fbotocore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boto%2Fbotocore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boto%2Fbotocore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boto%2Fbotocore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/boto","download_url":"https://codeload.github.com/boto/botocore/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253509782,"owners_count":21919589,"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":[],"created_at":"2024-07-31T17:01:29.674Z","updated_at":"2025-05-11T03:09:39.408Z","avatar_url":"https://github.com/boto.png","language":"Python","readme":"botocore\n========\n\n|Version| |Python| |License|\n\nA low-level interface to a growing number of Amazon Web Services. The\nbotocore package is the foundation for the\n`AWS CLI \u003chttps://github.com/aws/aws-cli\u003e`__ as well as\n`boto3 \u003chttps://github.com/boto/boto3\u003e`__.\n\nBotocore is maintained and published by `Amazon Web Services`_.\n\nNotices\n-------\n\nOn 2025-04-22, support for Python 3.8 ended for Botocore. 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.. _`Amazon Web Services`: https://aws.amazon.com/what-is-aws/\n.. |Python| image:: https://img.shields.io/pypi/pyversions/botocore.svg?style=flat\n    :target: https://pypi.python.org/pypi/botocore/\n    :alt: Python Versions\n.. |Version| image:: http://img.shields.io/pypi/v/botocore.svg?style=flat\n    :target: https://pypi.python.org/pypi/botocore/\n    :alt: Package Version\n.. |License| image:: http://img.shields.io/pypi/l/botocore.svg?style=flat\n    :target: https://github.com/boto/botocore/blob/develop/LICENSE.txt\n    :alt: License\n\nGetting Started\n---------------\nAssuming that you have Python and ``virtualenv`` installed, set up your environment and install the required dependencies like this or you can install the library using ``pip``:\n\n.. code-block:: sh\n\n    $ git clone https://github.com/boto/botocore.git\n    $ cd botocore\n    $ python -m venv .venv\n    ...\n    $ source .venv/bin/activate\n    $ python -m pip install -r requirements.txt\n    $ python -m pip install -e .\n\n.. code-block:: sh\n\n    $ pip install botocore\n\nUsing Botocore\n~~~~~~~~~~~~~~\nAfter installing botocore\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 credentials configuration method 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 botocore.session\n    \u003e\u003e\u003e session = botocore.session.get_session()\n    \u003e\u003e\u003e client = session.create_client('ec2')\n    \u003e\u003e\u003e print(client.describe_instances())\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. Please note many of the same resources available for ``boto3`` are\napplicable for ``botocore``:\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/botocore/issues/new/choose\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/botocore/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\nBotocore 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 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/botocore/blob/develop/NOTICE\u003e`__\n* `Changelog \u003chttps://github.com/boto/botocore/blob/develop/CHANGELOG.rst\u003e`__\n* `License \u003chttps://github.com/boto/botocore/blob/develop/LICENSE.txt\u003e`__\n","funding_links":[],"categories":["Python","others","Infrastructure \u0026 DevOps","SDKs and Samples"],"sub_categories":["Python SDK"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboto%2Fbotocore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fboto%2Fbotocore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboto%2Fbotocore/lists"}