Go to file
2023-12-01 22:27:53 -01:00
.devcontainer Add a Devcontainer (#6290) 2023-07-03 22:36:55 +00:00
.github Prep release 4.2.10 (#7064) 2023-11-24 19:17:50 -01:00
docs Lambda: event invoke config (#7078) 2023-12-01 22:07:52 -01:00
moto Techdebt: Update boto3_name to 'rds-data' (#7084) 2023-12-01 22:26:18 -01:00
other_langs Bump org.apache.maven.plugins:maven-surefire-plugin (#7088) 2023-12-01 22:27:53 -01:00
scripts Techdebt: Update boto3_name to 'rds-data' (#7084) 2023-12-01 22:26:18 -01:00
tests Techdebt: Update boto3_name to 'rds-data' (#7084) 2023-12-01 22:26:18 -01:00
.coveragerc MyPy improvements (#7045) 2023-11-21 22:51:03 -01:00
.git-blame-ignore-revs Admin: sorting imports with ruff (#7075) 2023-11-30 14:55:51 -01:00
.gitignore SQS: Ensure all SQS responses are in JSON format (#7057) 2023-11-23 10:04:20 -01:00
.gitmodules
.readthedocs.yaml
AUTHORS.md IOT: check if policy name already taken (#5352) 2022-08-02 19:45:46 +02:00
CHANGELOG.md Post-release steps 2023-11-24 22:21:27 +00:00
CLOUDFORMATION_COVERAGE.md Prep Release 4.1.7 (#6201) 2023-04-11 14:31:46 +00:00
CODE_OF_CONDUCT.md
codecov.yml Admin: Support Py 3.12 (#6966) 2023-10-30 19:01:03 -01:00
CONFIG_README.md
CONTRIBUTING.md Admin: Update Docs to point to getmoto (#5826) 2023-01-07 10:35:14 -01:00
Dockerfile Docker image is now based on Python 3.11 (#6714) 2023-08-23 07:28:42 +00:00
IMPLEMENTATION_COVERAGE.md Lambda: event invoke config (#7078) 2023-12-01 22:07:52 -01:00
ISSUE_TEMPLATE.md
LICENSE
Makefile Introducing a new linter: ruff (#6752) 2023-09-03 06:16:24 +00:00
MANIFEST.in Prep release 4.2.10 (#7064) 2023-11-24 19:17:50 -01:00
pyproject.toml Remove redundant wheel dep from pyproject.toml (#5832) 2023-01-11 19:44:34 -01:00
README.md Update README.md (#6960) 2023-10-28 08:09:38 +00:00
requirements-dev.txt MyPy improvements (#7045) 2023-11-21 22:51:03 -01:00
requirements-tests.txt Up openapi-spec-validator version; swith to pytest-order (#6943) 2023-10-23 21:42:34 +00:00
requirements.txt
ruff.toml Admin: sorting imports with ruff (#7075) 2023-11-30 14:55:51 -01:00
setup.cfg Techdebt: typing for backends (#7069) 2023-12-01 10:51:28 -01:00
update_version_from_git.py Move to pyproject.toml, instead of setup.py (#5821) 2023-01-06 18:43:16 -01:00

Moto - Mock AWS Services

Join the chat at https://gitter.im/awsmoto/Lobby

Build Status Coverage Status Docs PyPI PyPI - Python Version PyPI - Downloads Code style: black Financial Contributors

Install

$ pip install 'moto[ec2,s3,all]'

In a nutshell

Moto is a library that allows your tests to easily mock out AWS Services.

Imagine you have the following python code that you want to test:

import boto3


class MyModel:
    def __init__(self, name, value):
        self.name = name
        self.value = value

    def save(self):
        s3 = boto3.client("s3", region_name="us-east-1")
        s3.put_object(Bucket="mybucket", Key=self.name, Body=self.value)

Take a minute to think how you would have tested that in the past.

Now see how you could test it with Moto:

import boto3
from moto import mock_s3
from mymodule import MyModel


@mock_s3
def test_my_model_save():
    conn = boto3.resource("s3", region_name="us-east-1")
    # We need to create the bucket since this is all in Moto's 'virtual' AWS account
    conn.create_bucket(Bucket="mybucket")
    model_instance = MyModel("steve", "is awesome")
    model_instance.save()
    body = conn.Object("mybucket", "steve").get()["Body"].read().decode("utf-8")
    assert body == "is awesome"

With the decorator wrapping the test, all the calls to s3 are automatically mocked out. The mock keeps track of the state of the buckets and keys.

For a full list of which services and features are covered, please see our implementation coverage.

Documentation

The full documentation can be found here:

http://docs.getmoto.org/en/latest/

Financial Contributions

Support this project and its continued development, by sponsoring us!

Click the Sponsor-button at the top of the page for more information.

Our finances are managed by OpenCollective, which means you have full visibility into all our contributions and expenses: https://opencollective.com/moto

Security contact information

To report a security vulnerability, please use the Tidelift security contact. Tidelift will coordinate the fix and disclosure.