Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 1.26 KB

README.md

File metadata and controls

35 lines (21 loc) · 1.26 KB

Build Status Known Vulnerabilities

pyaemaws

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.

Installation

From PyPI:

pip3 install pyaemaws

From Python Wheel:

make deps package install

Usage

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)