Skip to main content

A python tool to easily work with Adobe Experience Manager (AEM) DAM.

Project description

A command line interface for Adobe Experience Manager (AEM) - DAM


DamPy is essentially a command line tool for working with Adobe Experience Manager (AEM) Digital Assets (DAM). Its purpose if two fold:

  • To provide a command line interface to access all DAM functionalities
  • To provide a comprehensive Python API to perform all operations on assets in AEM

Dependencies

Python 3

Features

  • Find a list of all assets in DAM / under a folder
  • Create a new folder
  • Move folder to a different path
  • Modify the folder title
  • Create a complete folder tree structure
  • Get the folder tree structure of DAM / under specific path
  • Restructure the folder hierarchy in DAM
  • Upload a new asset
  • Upload a local folder with all its assets and subfolders to DAM
  • Download an asset from DAM
  • Download a complete folder from DAM
  • Get the metadata of assets
  • Extract specified properties of the assets to a CSV file
  • Update properties of assets based on CSV file
  • Activate an asset or a folder
  • Activate a given list of assets and folders
  • Deactivate an asset or a folder
  • Deactivate a given list of assets and folders
  • Delete an asset or a folder
  • Delete a given list of assets and folders
  • Check if an asset already exists in DAM and the path(s) at which its present
  • Report all duplicate assets in DAM / under a path
  • Check-out and Check-in an asset in DAM / under a path
  • Edit an asset in DAM / under a path (crop, rotate, flip, map)

About the tool

DamPy is a tool to work with AEM DAM. For a client I recently work with, as we went live the client team had frequent requests to

  • Get a list of all the assets under a path
  • Download all assets under a path
  • Upload assets organized in the local folder structure to DAM
  • Extract specific properties of all assets under a path
  • Update properties of assets based on spreadsheet
  • And so on…

After dabbling with curls, AEM reports and WebDAV tools, I came to realize that writing Python scripts to make REST API calls to AEM and/or convert the result JSON into required output format to be the quickest and easiest option to handle these requests.

DamPy is a consolidation of many such scripts written into a comprehensive tool to work with AEM DAM

Getting Started

DamPy is available as pip install. To start working on this tool install it through pip command

pip install dampy

After the tool is installed, you can straight away start using it. All that it takes is to import AEM class from dampy package and start working with it. The below code is all it takes to get a list of all assets in DAM

# Getting started

# Import AEM from dampy
>>> From dampy import AEM

# Create a handle to an AEM Instance
>>> author = AEM()

# List all assets in DAM
>>> author.dam.list()

As you can see, three lines is all it takes to get a list of all assets in DAM

  1. Import AEM from dampy
  2. Create an instance of AEM
  3. Call the list method

Note: By default, DamPy connects to AEM Author instance running locally with admin/admin as credentials. Keep your local AEM instance running when trying the above snippet.

DamPy in-depth

The following sections explains in-depth the functionalities and technical details of DamPy tool

Creating an AEM handle

The first step in working with DamPy is to create an AEM handle. To create an AEM handle, import AEM from dampy and create an instance of it. Below code snippet shows various options to create an AEM handle

>>> From dampy import AEM
# Different options for creating AEM handle
# Create AEM handle to default AEM instance
>>> aem = AEM()

# Create AEM handle to the given host and credentials
>>> aem = AEM(‘http://my-aem-host:port’, ‘user’,’password’)

# Create AEM handle to default host, for admin user with password as ‘new-password’
>>> aem = AEM(password = ‘new-password’)

As you can see, AEM constructor takes in three optional parameters

host – defaults to http://localhost:4502 user – defaults to ‘admin’ password – defaults to ‘admin’

You can pass in none, all three, or some of these parameters to create an AEM handle

The dam object in AEM handle

The AEM handle includes a dam object wrapped within it and all functionalities of DamPy are exposed as methods on this dam object. The signature for invoking any method on dam looks like this

>>> aem.dam.<api>(<params...>)

We will see all the methods exposed on dam object in the following sections

list()

This method takes an optional path parameter and returns a list of all assets under this path. The returned list includes assets under all the subfolders of this path, subfolders under it and so on covering the entire node tree under the given path

If path parameter is not provided, it returns all assets in DAM (all assets under /content/dam)

It also has two more optional parameters

csv_dump – A Boolean flag indicating if the list needs to be written to a CSV file. Default value of this flag is False

csv_file – The output csv file name to write the list output to. The list gets written to output if either the csv_dump is set to True of csv_file value is specified.

If csv_dump is set to True but no csv_file value is specified, output is written to the file 'output/asset_list.csv' under the current working directory

# List all assets under ‘/content/dam/my_folder’
>>> my_assets = aem.dam.list(‘/content/dam/my_folder’)

# List all assets under ‘/content/dam’
>>> all_assets = aem.dam.list()

# List all assets under ‘/content/dam/my_folder’ and also write the output to a CSV file
>>> my_assets = aem.dam.list(‘/content/dam/my_folder’, csv_dump=True)

# List all assets under ‘/content/dam/my_folder’ and also write the output to the CSV file specified
>>> my_assets = aem.dam.list(‘/content/dam/my_folder’, csv_file=’output/list.csv’, )

createFolder()

This method creates a new folder in DAM. It takes in the path of the folder to create as a parameter and an optional title for the folder & returns a Boolean value indicating the success status of folder creation Parameters path – DAM folder path to create title – Optional title for the folder. If not provided, name of the folder is set as title

# Create a new DAM folder /content/dam/new_folder and set its title to ‘new_folder’
>>> status = aem.dam.createFolder(‘/content/dam/new_folder’)

# Create a new DAM folder /content/dam/new_folder and set its title to ‘My New Folder’
>>> status = aem.dam.createFolder(‘/content/dam/new_folder’, ‘My New Folder’)

createFolderTree()

This method creates the folder tree structure in DAM, reflecting the folder structure in a local dir or in a given list. It takes in a path under which to create the folder structure, local directory path that contains the folder structure to reflect in DAM and/or an input list containing the list of folders to create Parameters path – DAM folder under which to create the folder tree structure. Optional and defaults to /content/dam. Ignored if the folder structure or list provided starts with /content/dam/.. srcDir – Local folder path. The folder structure under this path is reflected in DAM srcList – Input list of folder paths to create. Can be a list or a text file or CSV file containing the list of folder paths to create in DAM

If both the srcDir and srcList parameters are provided, folder structure under both gets created in DAM

# Create folder tree, based on local folder structure under the path /content/dam/dampy/test
>>> status = aem.dam.createFolderTree(path='/content/dam/dampy/test', srcDir='upload/Folder Tree Dir')
   
# Create folder tree, based on entries in input text file
>>> status = aem.dam.createFolderTree( srcList='input/flist.txt')

# Create folder tree, based on entries in input CSV file
>>> status = aem.dam.createFolderTree(srcList='input/Folder_tree.csv')

# Create folder tree, based on input provided as a list
>>> status = aem.dam.createFolderTree(srcList=['/content/dam/dampy/test/Folder Tree LIST', '/content/dam/dampy/test/

updateFolderTitle()

This method updates the folder title with the new value provided Parameters path – Path of the DAM folder for which title change needs to be done newTitle – New value for the folder title

# Update the title of the folder to the new value provided
>>> status = aem.dam.updateFolderTitle(path='dampy/test/folder-tree-txt', newTitle='Root Folder from Text tree')

move()

This method moves the asset or folder from the srcPath to the destPath Parameters srcPath – Path of the source asset or folder to move destPath – Destination path under which the asset or folder is moved to newName – New name for the moved asset or folder. This parameter is optional and if not provided, the name of the asset or folder moved remains the same as its current name

# Move the folder from the source path to the destination path
>>> status = aem.dam.move(srcPath='/content/dam/dampy/test/folder-tree-txt', destPath='/content/dam/dampy/test/folder-tree-list')

# Move the folder from the source path to the destination path with a new name
>>> status = aem.dam.move(srcPath='/content/dam/dampy/test/folder-tree-list/folder-tree-txt', destPath='/content/dam/dampy/test/folder-tree-list', newName='text-tree')

fetchFolderTree()

This method fetches the folder structure under the given path and writes it to an output csv file Parameters path – Base path, the folder structure under which gets returned. Optional parameter and defaults to '/content/dam' csv_file – The name of the output CSV file to which the output is written to. Optional and by default writes to the file 'output/folder_tree.csv' props – List of properties of folders that are extracted for the folder tree. Optional and by default outputs the folder path and title

# Fetch the folder tree structure from DAM and write it to CSV file
>>> status = aem.dam.fetchFolderTree(path='/content/dam/dampy/test')

restructure()

This method restructures the DAM folder structure based on the input CSV file Parameters inputCSV – Path of the CSV file which contains the details for restructuring the folders. This CSV file contains a list of entries for moving or deleting a folder

# Restructure the folders in DAM, moving and deleting folders and updating folder title based on input CSV file
>>> status = aem.dam.restructure(inputCSV='input/restructure.csv')

uploadAsset()

This method uploads an asset from the local path to DAM under the path specified. It takes in 2 parameters

file – Path of the local file to upload. This is a mandatory parameter

path – DAM path under which the file has to be uploaded, Defaults to ‘/content/dam’ if not specified

This method returns a Boolean value indicating the success status

# Upload the given file to the specified DAM folder
>>> status = aem.dam.uploadAsset(‘./assets/sample1.png’, ‘/content/dam/new_folder)

# Upload the given file to DAM under ‘/content/dam’
>>> status = aem.dam.uploadAsset(‘./assets/sample1.png’)

uploadFolder()

This method uploads all the assets from a local folder to DAM. It takes in 2 parameters

dir – The local folder path, all assets under which gets uploaded to DAM. This is an optional parameter and uploads all assets under folder named ‘upload’ under the current path if not specified

path – DAM path under which to download. Its optional and defaults to /content/dam. For assets under the folder structure starting with /content/dam/… in the local folder specified, this parameter is ignored

The folder structure under the given local folder dir gets reflected under the DAM path provided.

This method also returns a Boolean value indicating the success status

# Upload all the folders and assets under ./upload to DAM under /content/dam
>>> status = aem.dam.uploadFolder()

# Upload all the folders and assets under ./upload to DAM under /content/dam/my_uploads
>>> status = aem.dam.uploadFolder(path=’/content/dam/my_uploads)

# Upload all the folders and assets under ./assets to DAM under /content/dam
>>> status = aem.dam.uploadFolder(‘./assets’)

# Upload all the folders and assets under ./assets to DAM under /content/dam/my_uploads
>>> status = aem.dam.uploadFolder(dir=‘./assets’, path=’/content/dam/my_uploads)

downloadAsset()

This method downloads the given assets to a local folder. This method takes in three parameters

asset_path – A mandatory parameter which is the full path to the asset to download

dir – local folder path to download the asset. This is optional and the asset gets downloaded to a folder named ‘download’ if not specified. The folder gets created is the given folder does not exist on the file system

retain_dam_path – A Boolean flag to retain or ignore the DAM folder tree when downloading to local. Defaults to False

This method returns a Boolean value indicating the success or failure of the download

# Download the asset to ./download folder
>>> status = aem.dam.downloadAsset(‘/content/dam/my_folder/dampy_sample.png’)

# Download the asset to ./assets folder
>>> status = aem.dam.downloadAsset(‘/content/dam/my_folder/dampy_sample.png’, ‘./assets’)

# Download the asset to ./assets folder under the subfolder /content/dam/my_folder
>>> status = aem.dam.downloadAsset(‘/content/dam/my_folder/dampy_sample.png’, ‘./assets’, True)

downloadFolder()

This method downloads all the assets under a given DAM path to a local folder. This method takes in three parameters

path – Optional. Path of the DAM folder from which all assets gets downloaded. If this parameter is not given all assets under ‘/content/dam’ gets downloaded

dir – local folder path to download all the asset to. This is optional and the assets get downloaded to a folder named ‘download’ if not specified. The folder to download the assets to gets created if it does not already exist on the file system.

retain_dam_path – A Boolean flag to retain or ignore the DAM folder tree when downloading to local. Defaults to True

The tree structure of DAM is retained when downloading assets under the given DAM path, with the downloaded folder structure reflecting the DAM folder hierarchy

This method also returns a Boolean value indicating the success or failure of the download

# Download all assets under the given DAM folder to ./download, retaining the DAM folder structure in local

>>> status = aem.dam.downloadFolder(‘/content/dam/my_folder’)

# Download all assets under the given DAM folder to ./assets folder, retaining the DAM folder structure in local
>>> status = aem.dam.downloadFolder(‘/content/dam/my_folder’, ‘./assets’)

# Download all assets under the given DAM folder to ./assets folder. All assets are placed in ./assets folder, ignoring the DAM folder structure
>>> status = aem.dam.downloadFolder(‘/content/dam/my_folder’, ‘./assets’, False)

metadata()

This method returns the metadata of the given asset as a json object. It takes in 2 parameters asset_path – A mandatory parameter which is the full path to the asset

level – optional, the nesting level in the node hierarchy includes in the response json. Defaults to 1

# Get level 1 metadata of given asset
>>> metadata_json = aem.dam.metadata(‘/content/dam/my_folder/dampy_sample.png’)

# Get up to level 4 metadata of the given asset 
>>> metadata_json = aem.dam.metadata(‘/content/dam/my_folder/dampy_sample.png’, 4)

xprops()

This method extracts the metadata properties of all the assets under a given path and writes it to a CSV file. It takes 3 parameters, all optional

path – DAM path. Extracts properties of all assets under this path. Defaults to ‘/content/dam’

props – List of properties to extract. By default extract the asset path & title

csv_file – The output file to write the extracted properties to. By default, its written to the file ‘output/asset_props.csv’

# Extract path and title of all dam assets and write it to output/asset_props.csv
>>> status = aem.dam.xprops()

# Extract path and title of all dam assets under my_folder and write it to output/asset_props.csv
>>> status = aem.dam.xprops(‘/content/dam/my_folder’)

# Extract path, title and tags of all dam assets under my_folder and write it to output/asset_title_n_tags_.csv
>>> status = aem.dam.xprops(‘/content/dam/my_folder’, [‘jcr:path’, ‘jcr:content/metadata/dc:title’, ‘jcr:content/metadata/cq:tags’], ‘output/asset_title_n_tags_.csv’)

uprops()

This method takes a csv file as input and updates asset properties with the data provided in this CSV file. It takes 1parameter, the path to the CSV file.

csv_file – Path to the csv file with data for asset properties update. By default, tries the read the input csv file at in ‘input/asset_props.csv’

This input CSV file should adhere to the below conditions

  • The first row is the header and should have the property name to update for the respective columns. Property name is the fully qualified name of the property under the asset. E.g. Title property name is ‘jcr:content/metadata/dc:title’
  • The second row is the type of the property. Can be String, Date, Boolean, … and can be a single value or array value. E.g. for String array mention the type as ‘String[]’
  • From row 3 onwards, each row contains the properties for one asset
  • The first column must be ‘jcr:path’ property with its type as String and values as full path of the asset in DAM

After creating the csv and placing it in a path, invoke the uprops method as given in the below code snippet

# Update properties based on the input csv file input/asset_props.csv
>>> status = aem.dam.uprops()

# Update properties based on the input csv file input/asset_cust_props.csv
>>> status = aem.dam.uprops(‘input/asset_cust_props.csv’)

activate()

This method activates the given asset or a folder in DAM. It takes in one mandatory path parameter

path – Mandatory parameter specifying the path to the asset or DAM folder that needs to be activated

This method returns a Boolean value indicating the success status

# Activates the given asset in DAM
>>> status = aem.dam.activate((‘/content/dam/my_folder/dampy_sample.png’)

# Activates the given folder (folder tree) in DAM
>>> status = aem.dam.activate((‘/content/dam/my_folder’)

activateList()

This method activates all the assets provided by its parameter listSrc

listSrc – Mandatory parameter containing the list of assets to activate. This parameter can be a list of all assets to activate or name of a text or CSV file containing the list of assets to activate

This method returns a Boolean value indicating the success status if all the assets in the list are activated successfully

# Activate a list of assets in text file
>>> status = aem.dam.activateList(listSrc='input/alist.txt')

# Activate a list of assets in a CSV file
>>> status = aem.dam.activateList(listSrc='input/alist.csv')

# Activate a list of assets passed in as parameter
>>> status = aem.dam.activateList(listSrc=['/content/dam/dampy/test/new_samples/activities/hiking-camping/alpinists-himalayas.jpg', '/content/dam/dampy/test/new_samples/activities/running/fitness-woman.jpg'])

deactivate()

This method deactivates a given asset or a folder in DAM. It takes in one mandatory path parameter

path – Mandatory parameter specifying the path to the asset or a DAM folder that needs to be deactivated

This method returns a Boolean value indicating the success status

# Deactivates the given asset in DAM
>>> status = aem.dam.deactivate((‘/content/dam/my_folder/dampy_sample.png’)

# Deactivates the given folder in DAM
>>> status = aem.dam.deactivate((‘/content/dam/my_folder’)

deactivateList()

This method deactivates all the assets provided by its parameter listSrc

listSrc – Mandatory parameter containing the list of assets to deactivate. This parameter can be a list of all assets to deactivate or name of a text or CSV file containing the list of assets to deactivate

This method returns a Boolean value indicating the success status if all the assets in the list are deactivated successfully

# Deactivate a list of assets in text file
>>> status = aem.dam.deactivateList(listSrc='input/alist.txt')

# Deactivate a list of assets in a CSV file
>>> status = aem.dam.deactivateList(listSrc='input/alist.csv')

# Deactivate a list of assets passed in as parameter
>>> status = aem.dam.deactivateList(listSrc=['/content/dam/dampy/test/new_samples/activities/hiking-camping/alpinists-himalayas.jpg', '/content/dam/dampy/test/new_samples/activities/running/fitness-woman.jpg'])

delete()

This method deletes a given asset or a folder. It takes in one mandatory path parameter

path – Mandatory parameter specifying the path to the asset or the DAM folder that needs to be deleted

This method returns a Boolean value indicating the success status

# Deletes the given asset from DAM
>>> status = aem.dam.delete((‘/content/dam/my_folder/dampy_sample.png’)

# Deletes the given folder from DAM
>>> status = aem.dam.delete((‘/content/dam/my_folder’)

deleteList()

This method deletes all the assets provided by its parameter listSrc

listSrc – Mandatory parameter containing the list of assets to delete. This parameter can be a list of all assets to delete or name of a text or CSV file containing the list of assets to delete

This method returns a Boolean value indicating the success status if all the assets in the list are deleted successfully

# Delete a list of assets in text file
>>> status = aem.dam.deleteList(listSrc='input/alist.txt')

# Delete a list of assets in a CSV file
>>> status = aem.dam.deleteList(listSrc='input/alist.csv')

# Delete a list of assets passed in as parameter
>>> status = aem.dam.deleteList(listSrc=['/content/dam/dampy/test/new_samples/activities/hiking-camping/alpinists-himalayas.jpg', '/content/dam/dampy/test/new_samples/activities/running/fitness-woman.jpg'])

exists()

This method checks if a given asset file is available in DAM and returns the list of paths under which it is available

asset – Path of the asset in the local system.

# Check if an asset exits in DAM and return the paths under which its present
>>> status = aem.dam.exists('upload/Shorts_men.jpg')

duplicates()

This method finds all the duplicate assets under the given path and returns it. Returns an empty object if no duplicates are identified

path – Path under which the check is done to identify duplicates

# List all duplicate assets in DAM under the given path
>>> status = aem.dam.duplicates('/content/dam/dampy')

# List all duplicate assets in DAM
>>> status = aem.dam.duplicates()

checkout()

This method checks out the given asset in DAM. It takes in one mandatory path parameter

path – Mandatory parameter specifying the path to the asset that needs to be checked out

This method returns a Boolean value indicating the success status

# checks out the given asset in DAM
>>> status = aem.dam.checkout((‘/content/dam/my_folder/dampy_sample.png’)

checkin()

This method checks in the given asset in DAM. It takes in one mandatory path parameter

path – Mandatory parameter specifying the path to the asset that needs to be checked in

This method returns a Boolean value indicating the success status

# checks in the given asset in DAM
>>> status = aem.dam.checkin((‘/content/dam/my_folder/dampy_sample.png’)

crop()

This method crops the given asset in DAM. It takes in three mandatory parameters

path – Mandatory parameter specifying the path to the asset that needs to be cropped top_left – Mandatory parameter specifying the top left position as tuple indicating the start of crop position bottom_right – Mandatory parameter specifying the bottom right position as tuple indicating the end of crop position

This method returns a Boolean value indicating the success status

# Crop the given asset in DAM
>>> status = aem.dam.crop((‘/content/dam/my_folder/dampy_sample.png’, (87, 49), (547,331))

rotate()

This method crops the given asset in DAM. It takes in two mandatory parameters

path – Mandatory parameter specifying the path to the asset that needs to be rotated angle – Mandatory parameter specifying the angle by which the asset needs to be rotated

This method returns a Boolean value indicating the success status

# Rotate the given asset in DAM
>>> status = aem.dam.rotate((‘/content/dam/my_folder/dampy_sample.png’, 90)

flip()

This method flips the given asset in DAM horizontally or vertically or both ways. It takes in two mandatory parameters

path – Mandatory parameter specifying the path to the asset that needs to be flipped type – Mandatory parameter specifying the type of flip to be performed. Value of 'h' or 'horizontal' flips the asset horizontally. Value of 'v' or 'vertical' flips the asset vartically. Value of 'b' or 'both' flips the asset both ways

This method returns a Boolean value indicating the success status

# Flip the given asset in DAM horizontally
>>> status = aem.dam.flip((‘/content/dam/my_folder/dampy_sample.png’, 'h')

# Flip the given asset in DAM vertically
>>> status = aem.dam.flip((‘/content/dam/my_folder/dampy_sample.png’, 'vertical')

# Flip the given asset in DAM both ways
>>> status = aem.dam.flip((‘/content/dam/my_folder/dampy_sample.png’, 'both')

map()

This method adds image map to the given asset in DAM. It takes in two mandatory parameters

path – Mandatory parameter specifying the path to the asset that needs to be mapped data – Mandatory parameter specifying the data with which the image map is built

This method returns a Boolean value indicating the success status

# Map the given asset in DAM with the circular image map
>>> status = aem.dam.map((‘/content/dam/my_folder/dampy_sample.png’, data='[circle(482,536,324)"#test_link_c"|"_blank"|"Test link Cricle"]')

# Map the given asset in DAM with the rectangle image map
>>> status = aem.dam.map((‘/content/dam/my_folder/dampy_sample.png’, data='[rect(182,36,524,322)"#test_link_p"|"_self"|"Test link Rectangle"]')

# Map the given asset in DAM with a circle and a rectangle image map
>>> status = aem.dam.map((‘/content/dam/my_folder/dampy_sample.png’, data='[rect(182,36,524,322)"test_link_p"|"_self"|"Test link Rectangle"][circle(482,536,324)"test_link_c"|"_blank"|"Test link Cricle"]')

getMapData()

A utility method that returns the image map data string based on input parameters. It takes in the following parameters

currentMap – Image map string to which the new map data needs to be appended to. Defaults to '' type – Type of the image map. Can be 'circle' or 'rect'. Defaults to 'rect' dimension – Dimension for the type of image map. Defaults to (0,0,100,100) for the default 'rect' type link – Link pointed to by the image map. Defaults to '#' alt – Alt text for the image map. Defaults to 'Click' target – Target window for the image map. Can be '_self' or '_parent' or '_blank'. Defaults to '_self'

This method returns string representation for the image map data

# Get map data for a circle image map
>>> status = aem.dam.getMapData(type='circle', dimension=(482,536,324), link='test_link_c', alt='Test link Cricle', target='_blank')

'[circle(482,536,324)"test_link_c"|"_blank"|"Test link Cricle"]'

# Get map data for the default rectangle image map
>>> status = aem.dam.getMapData()

'[rect(0, 0, 100, 100)"#"|"_self"|"Click"]'

edit()

This method edits an asset asset in DAM. This method can be used to do one of more of cropping, rotating, flipping and applying map to an asset in one go.
It takes in two mandatory parameters

path – Mandatory parameter specifying the path to the asset that needs to be edited corp – Crop value to be applied on the asset if applicable rotate – Angle to rotate the asset if applicable flip – Vertical and/or horizontal flip to be applied on the asset if needed map – Map data to be applied on the asset if needed

This method returns a Boolean value indicating the success status

# Edit an asset in DAM applying crop, rotate, filp and map - all in one go
>>> status = aem.dam.edit('/content/dam/dampy/test/samples/Shorts_men.jpg', crop='87,87,778,551', rotate='270', flip='h', map='[rect(182,36,524,322)"#test_link_p"|"_self"|"Test link Rectangle"][circle(482,536,324)"#test_link_c"|"_blank"|"Test link Cricle"]')

Reservation

Though this is a generic utility, they have been tested for limited set of use cases. Make sure its tested for your scenarios before applying it for production purpose


Environments Tested on: AEM 6.1, 6.2 & 6.4 | Windows, RHEL5 | Python 3.7.2

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

DamPy-0.12.9.tar.gz (28.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page