Sources API Reference
Auto-generated documentation from source code docstrings. Note these are low level source details; for user-facing source guides see the User Guide.
The base source class is a foundation for building specific data source integrations. It provides common functionality such as data fetching, updating, and state management.
Base Classes
UpdateState
UpdateState
dataclass
Shared state container for the update process.
Source code in macrotrace/sources/base.py
APIClient
APIClient
Source code in macrotrace/sources/base.py
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 | |
__init__(base_url, cache_settings=None, cache_path=None)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
base_url
|
str
|
Base URL for the API |
required |
cache_settings
|
Dict[str, Any]
|
Cache settings. Defaults to {"caching": True, "cache_expiry": 86400}. |
None
|
cache_path
|
str
|
Path to the request-cache SQLite
file. Resolution: this argument, then |
None
|
Source code in macrotrace/sources/base.py
make_request(endpoint, params={})
Make a request to the API endpoint. Note that this method does not handle pagination.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
endpoint
|
str
|
API endpoint path |
required |
params
|
Dict[str, Any]
|
Additional parameters for the request. To be merged with default parameters. Defaults to {}. |
{}
|
Returns:
| Type | Description |
|---|---|
Dict[str, Any]
|
Dict[str, Any]: JSON response from the API |
Source code in macrotrace/sources/base.py
make_paginated_request(endpoint, params={}, limit_param='limit', offset_param='offset', limit=1000, items_key=None, max_pages=50)
Make paginated requests to the API endpoint using limit/offset pagination. Automatically fetches all pages when the number of returned items equals the limit.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
endpoint
|
str
|
API endpoint path |
required |
params
|
Dict[str, Any]
|
Additional parameters for the request. Defaults to {}. |
{}
|
limit_param
|
str
|
The parameter name for the page size limit. Defaults to "limit". |
'limit'
|
offset_param
|
str
|
The parameter name for the offset. Defaults to "offset". |
'offset'
|
limit
|
int
|
The page size for each request. Defaults to 1000. |
1000
|
items_key
|
Optional[str]
|
The key in the response containing the items list. If None, assumes the entire response is the items list. Defaults to None. |
None
|
max_pages
|
int
|
Maximum number of pages to fetch as a safety limit. Defaults to 50. |
50
|
Returns:
| Type | Description |
|---|---|
List[Dict[str, Any]]
|
List[Dict[str, Any]]: A combined list of all items from all pages |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If max_pages is reached before pagination completes naturally |
Source code in macrotrace/sources/base.py
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | |
make_request_dry_run(endpoint, params={})
Generate the request URL and parameters without making the actual request. Useful for debugging or logging purposes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
endpoint
|
str
|
API endpoint path |
required |
params
|
Dict[str, Any]
|
Additional parameters for the request. To be merged with default parameters. Defaults to {}. |
{}
|
Returns: Tuple[str, Dict[str, Any]]: The full request URL and the parameters.