pyaemaws is a Python client for Shine Solutions Adobe Experience Manager (AEM) Platform on AWS.
This library provides an API which enables the interaction with the platform via Python language, allowing a deep integration with a number of Python-based tools such as Ansible.
pyaemaws is part of AEM OpenCloud platform.
From PyPI:
pip3 install pyaemaws
From Python Wheel:
make deps package install
To retrieve all stack prefixes of AEM Full-Set stacks:
from pyaemaws.stack_prefix import StackPrefix
stack_prefix = StackPrefix(region_name='ap-southeast-2')
full_set_stack_prefixes = stack_prefix.get_full_set_stack_prefixes()
for full_set_stack_prefix in full_set_stack_prefixes:
print(full_set_stack_prefix)