{"library":"moto-ext","title":"moto-ext","description":"moto-ext is an extension of the moto library for mocking AWS services in tests. It provides additional AWS service mocks not included in the core moto package. Current version 5.1.33, requires Python >=3.9. Released as part of the moto ecosystem.","language":"python","status":"active","last_verified":"Mon Apr 27","install":{"commands":["pip install moto-ext"],"cli":null},"imports":["import moto_ext"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import boto3\nfrom moto import mock_aws\nfrom moto_ext import some_mock  # replace with actual mock\n\n@mock_aws\ndef test_my_function():\n    client = boto3.client('sns', region_name='us-east-1')\n    response = client.create_topic(Name='test-topic')\n    assert 'TopicArn' in response\n","lang":"python","description":"Basic usage: use @mock_aws decorator from moto to mock all AWS services, including those provided by moto-ext.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}