Skip to content

Latest commit

 

History

History
73 lines (49 loc) · 1.5 KB

README.md

File metadata and controls

73 lines (49 loc) · 1.5 KB

Adobe Sign CLI

Basic CLI utility for administrative tasks for Adobe Sign.

Goals

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.

Installation

Requires Python 3.7!!!! Someone can feel free to upgrade this to be compatible w/ more updated versions of Python.

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

Development

For development, install with poetry.

git clone https://github.com/adobe/adobe-sign-cli.git
poetry install
poetry shell
sign

Usage

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}

Contributing

Contributions are welcomed! Read the Contributing Guide for more information.

Licensing

This project is licensed under the Apache V2 License. See LICENSE for more information.