Files
status-python-sdk/constants.py
T
Nick Ninov 0491c597f7 create_account: store credentials locally
- Initial documentation with how to run the project
- Store `create_account_and_login` credentials locally so they can be reused when messaging
- Script can be ran with arguments
2026-02-24 21:46:56 +02:00

10 lines
239 B
Python

import os
CREDENTIALS_PATH = os.path.join(os.path.dirname(__file__), "accounts")
STATUS_BACKEND_PARAMS = {
"url": "http://localhost:8080",
"logLevel": "INFO",
"data_dir": os.path.join(os.path.dirname(__file__), "data-dir")
}