{"id":14956599,"url":"https://github.com/mongodb/pymongo-auth-aws","last_synced_at":"2025-11-11T21:03:39.104Z","repository":{"id":37465892,"uuid":"239022798","full_name":"mongodb/pymongo-auth-aws","owner":"mongodb","description":"The Python MONGODB-AWS authentication mechanism for PyMongo","archived":false,"fork":false,"pushed_at":"2025-03-08T18:56:01.000Z","size":97,"stargazers_count":10,"open_issues_count":1,"forks_count":5,"subscribers_count":28,"default_branch":"master","last_synced_at":"2025-04-10T03:56:15.993Z","etag":null,"topics":["aws","mongodb","python"],"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/mongodb.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.rst","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-02-07T21:07:53.000Z","updated_at":"2025-03-08T18:56:05.000Z","dependencies_parsed_at":"2023-12-15T21:58:57.869Z","dependency_job_id":"ef874d0f-fbca-4215-a452-168aa5a1c5e9","html_url":"https://github.com/mongodb/pymongo-auth-aws","commit_stats":{"total_commits":61,"total_committers":7,"mean_commits":8.714285714285714,"dds":0.540983606557377,"last_synced_commit":"470b544ae3e960f6a65d59faf8df8adac42dccee"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mongodb%2Fpymongo-auth-aws","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mongodb%2Fpymongo-auth-aws/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mongodb%2Fpymongo-auth-aws/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mongodb%2Fpymongo-auth-aws/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mongodb","download_url":"https://codeload.github.com/mongodb/pymongo-auth-aws/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248155001,"owners_count":21056542,"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","mongodb","python"],"created_at":"2024-09-24T13:13:11.578Z","updated_at":"2025-11-11T21:03:34.073Z","avatar_url":"https://github.com/mongodb.png","language":"Python","readme":"================\npymongo-auth-aws\n================\n:Info: MONGODB-AWS authentication support for PyMongo. See\n       `GitHub \u003chttps://github.com/mongodb/pymongo-auth-aws\u003e`_\n       for the latest source.\n:Author: Shane Harvey\n\nAbout\n=====\n\nMONGODB-AWS authentication support for PyMongo. pymongo-auth-aws uses\n`boto3`_, `botocore`_, and `requests`_.\n\nSupport / Feedback\n==================\n\nFor issues with, questions about, or feedback for pymongo-auth-aws, please look into\nour `support channels \u003chttp://www.mongodb.org/about/support\u003e`_. Please\ndo not email any of the pymongo-auth-aws developers directly with issues or\nquestions - you're more likely to get an answer on the `MongoDB Community Forums`_.\n\nBugs / Feature Requests\n=======================\n\nThink you’ve found a bug? Want to see a new feature in pymongo-auth-aws?\nPlease open a case in our issue management tool, JIRA:\n\n- `Create an account and login \u003chttps://jira.mongodb.org\u003e`_.\n- Navigate to `the PYTHON project \u003chttps://jira.mongodb.org/browse/PYTHON\u003e`_.\n- Click **Create Issue** - Please provide as much information as possible about the issue type and how to reproduce it.\n\nBug reports in JIRA for all driver projects (i.e. PYTHON, CSHARP, JAVA) and the\nCore Server (i.e. SERVER) project are **public**.\n\nHow To Ask For Help\n-------------------\n\nIssues with, questions about, or feedback for pymongo-auth-aws should be sent\nto the `MongoDB Community Forums`_.\n\nPlease include all of the following information when opening an issue:\n\n- Detailed steps to reproduce the problem, including full traceback, if possible.\n- The exact python version used, with patch level::\n\n  $ python -c \"import sys; print(sys.version)\"\n\n- The exact version of pymongo-auth-aws used::\n\n  $ python -c \"import pymongo_auth_aws; print(pymongo_auth_aws.__version__)\"\n\n- The exact version of PyMongo used::\n\n  $ python -c \"import pymongo; print(pymongo.version); print(pymongo.has_c())\"\n\n- The operating system and version (e.g. Windows 10, OSX 10.15, ...)\n- Web framework or asynchronous network library used, if any, with version (e.g.\n  Django 3.0, mod_wsgi 4.7.1, gevent 20.5.2, Tornado 6.0.4, ...)\n\nSecurity Vulnerabilities\n------------------------\n\nIf you've identified a security vulnerability in a driver or any other\nMongoDB project, please report it according to the `instructions here\n\u003chttp://docs.mongodb.org/manual/tutorial/create-a-vulnerability-report\u003e`_.\n\nInstallation\n============\n\npymongo-auth-aws can be installed with `pip \u003chttp://pypi.python.org/pypi/pip\u003e`_::\n\n  $ python -m pip install pymongo-auth-aws\n  $ python -c \"import pymongo_auth_aws; print(pymongo_auth_aws.__version__)\"\n  1.0.0\n\nInstalling from source\n----------------------\n\nTo install pymongo-auth-aws from source::\n\n  $ git clone git@github.com:mongodb/pymongo-auth-aws.git\n  $ python -m pip install ./pymongo-auth-aws\n\nDependencies\n============\n\npymongo-auth-aws supports CPython 3.7+ and PyPy3.7+.\n\npymongo-auth-aws requires `botocore`_ and `requests`_.\n\nTesting\n=======\n\nInstall the test dependencies and run the test suite.\n\n  $ python -m pip install -e \".[test]\"\n  $ pytest\n\n.. _MongoDB Community Forums:\n   https://developer.mongodb.com/community/forums/tag/python-driver\n\n.. _boto3: https://pypi.org/project/boto3/\n\n.. _botocore: https://pypi.org/project/botocore/\n\n.. _requests: https://pypi.org/project/requests/\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmongodb%2Fpymongo-auth-aws","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmongodb%2Fpymongo-auth-aws","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmongodb%2Fpymongo-auth-aws/lists"}