add services list to readme

This commit is contained in:
Steve Pulec 2013-02-28 00:09:58 -05:00
parent 98fc1eeab9
commit f8c64104db

View File

@ -45,17 +45,21 @@ def test_my_model_save():
With the decorator wrapping the test, all the calls to s3 are automatically mocked out. The mock keeps the state of the buckets and keys. With the decorator wrapping the test, all the calls to s3 are automatically mocked out. The mock keeps the state of the buckets and keys.
<!-- # Available Moto services: It gets even better! Moto isn't just S3. Here's the status of the other AWS services implemented.
* S3
* EC2
* DynamoDB * DynamoDB
* Table actions - core done
* EC2
* AMI - core done
* EBS - core done
* Instances - completed
* Security Groups - core done
* Tags - completed
* S3 - core done
* SES - core done
* SQS - core done
#### Install This library has been tested on boto v2.5+.
```console
pip install moto
```
-->
## Usage ## Usage
@ -101,3 +105,9 @@ def test_my_model_save():
mock.stop() mock.stop()
``` ```
#### Install
```console
pip install moto
```