PindoDocs
Web AppWeb

Install & Authentication

The Pindo CLI is a Python package that provides command-line access to the API for testing, automation, and account management. Get started by installing the Python package with pip.

Install

pip install pindo-cli
pindo --version
# Pindo CLI, version 1.x

pindo --help        # list every command

Create an account

Register a new Pindo account right from your terminal. You'll be prompted for a username, email, and password.

pindo register

# You'll be prompted for your details:
Username: remy
Email: [email protected]
Password: ********
Confirm password: ********

 Account created. Welcome to Pindo.

Authenticate

Request a token with your credentials, then pass it to any command via --token.

pindo token

Username: remy
Password: ********

 Token issued:
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9...

Treat your token like a password. Store it in an environment variable rather than pasting it into every command.