moto

Mock AWS services for testing without real AWS resources

brewmacoslinux
Try with needOr install directly
Source

About

Mock AWS services

Commands

moto_server

Examples

Start moto server to mock AWS services on default port 5000$ moto_server
Start moto server mocking S3 and DynamoDB on port 8000$ moto_server s3 dynamodb -p 8000
Use moto in Python tests to mock S3 operations$ python -c "from moto import mock_s3; @mock_s3\ndef test(): pass"