chronulus.environment
Env
Bases: BaseSettings
Environment settings class for managing API configuration.
This class handles environment variables and configuration for the Chronulus API, with support for loading from environment files.
Attributes:
Name | Type | Description |
---|---|---|
API_URI |
str
|
The URI for the Chronulus API endpoint. |
CHRONULUS_API_KEY |
str or None
|
The API key for authentication. Defaults to the value in CHRONULUS_API_KEY environment variable. |
Notes
Configuration is loaded from environment files in order of precedence, with the default.env file serving as the base configuration.
Source code in src/chronulus/environment.py
BaseEnv
Base class for environment-aware components.
This class provides basic environment configuration and header management for API interactions.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**kwargs
|
Keyword arguments to pass to the Env initialization. |
{}
|
Attributes:
Name | Type | Description |
---|---|---|
env |
Env
|
The environment settings instance. |
headers |
dict
|
Default headers for API requests, including authentication. |
Source code in src/chronulus/environment.py
get_default_env_path()
Get the path to the default environment file in the package.
Returns:
Type | Description |
---|---|
str
|
The absolute path to the default.env file. |
Source code in src/chronulus/environment.py
get_default_headers(env)
Generate default headers for API requests.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
env
|
Env
|
The environment settings instance containing the API key. |
required |
Returns:
Type | Description |
---|---|
dict
|
A dictionary containing the X-API-Key header with the API key. |