Skip to content

Commit 5cd2851

Browse files
author
Luca Valentini
authored
Update README (#7)
* Update README * Bump version
1 parent 330df6a commit 5cd2851

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ your own services being rate-limited in turn.
2121

2222
## Install
2323
```bash
24-
pip install aws-ssm
24+
pip install python-aws-ssm
2525
```
2626

2727
## Examples
2828

2929
#### Basic Usage
3030

3131
```python
32-
from aws_ssm.parameters import ParameterStore
32+
from python_aws_ssm.parameters import ParameterStore
3333

3434
# Assuming you have the parameters in the following format:
3535
# my-service/dev/param-1 -> with value `a`
@@ -45,7 +45,7 @@ value = parameters.get("param-1")
4545
#### Recursive and nested options
4646

4747
```python
48-
from aws_ssm.parameters import ParameterStore
48+
from python_aws_ssm.parameters import ParameterStore
4949

5050
# Assuming you have the parameters in the following format:
5151
# my-service/dev/param-1 -> with value `a`
@@ -63,7 +63,7 @@ dev_parameters = parameters.get("dev")
6363
#### Get parameters by name
6464

6565
```python
66-
from aws_ssm.parameters import ParameterStore
66+
from python_aws_ssm.parameters import ParameterStore
6767

6868
# Assuming you have the parameters in the following format:
6969
# my-service/dev/param-1 -> with value `a`
@@ -81,7 +81,7 @@ dev_parameters = parameters.get("/common/dev/param-2")
8181
#### With custom client
8282

8383
```python
84-
from aws_ssm.parameters import ParameterStore
84+
from python_aws_ssm.parameters import ParameterStore
8585
import boto3
8686

8787
# Initialise an SSM client to specify the source of the credentials.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "python-aws-ssm"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Python package that interfaces with AWS System Manager"
55
authors = ["Luca Valentini <[email protected]>", "Maarten Jacobs <[email protected]>"]
66
# New attributes

python_aws_ssm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.1"
1+
__version__ = "0.1.2"

tests/test_python_aws_ssm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
def test_version():
9-
assert __version__ == "0.1.1"
9+
assert __version__ == "0.1.2"
1010

1111

1212
class TestGetParameters(TestCase):

0 commit comments

Comments
 (0)