Python SDK to work with Radicalbit Platform.
The project is based on poetry for managing dependencies.
You should have poetry installed on your local machine. You can follow the instruction on https://python-poetry.org.
After you have poetry installed you can install the project's dependencies run:
poetry install
To run code formatter use:
poetry run ruff format
There are multiple ways to authenticate to AWS S3 API. The order in witch the client searches for credentials is:
- passing
AwsCredentials
to functions - using environment variables
- using shared credentials file
~/.aws/credentials
- using AWS config file
~/.aws/config
To run the tests execute:
# Run unit tests
poetry run pytest -v
# Run code format validation
poetry run ruff check