Basic CLI utility for administrative tasks for Adobe Sign.
Sometimes power users run into repetitive tasks, or requirements that are not achievable via the sign UI. This CLI makes things easier and/or achievable.
For easy installation, use pipx to install the shell as an executable. You can also install w/ normal pip, if you want to use the base library in a project.
# pipx
pipx install adobesign
sign --help
# pip
pip install adobesign
sign
For development, install with poetry.
git clone foo
poetry install
poetry shell
sign
Usage instructions for your code.
Example:
# RTFM
sign
# Clone a template
sign clone-template
# List users w/ multipls groups, but still in default
sign default-primary-report
If you want to skip assigning your key, every time you run a script, you can save the key & base_uri in your env, or a .env file.
# Saving access via .env
cp .env.dist .env
code .env
# Saving to your env
export INTEGRATION_KEY={integration_key}
export BASE_URI={integration_key}
Contributions are welcomed! Read the Contributing Guide for more information.
This project is licensed under the Apache V2 License. See LICENSE for more information.