Overview
create_pulsegrid(...) is the entry point into the Python PulseGrid module.
Setup
Pass:
- base_url
- public_key
- secret_key
- project_id
Code example
from pulsegrid import create_pulsegrid
pulsegrid = create_pulsegrid(
base_url="https://www.altrancconnect.com",
public_key="pk_your_public_key",
secret_key="sk_your_secret_key",
project_id="your_project_uuid",
)
Notes
This is the clean setup point Python developers should start with.