Core¶
tangram_core
¶
InjectBackendState
module-attribute
¶
InjectBackendState: TypeAlias = Annotated[
BackendState, Depends(get_state)
]
BackendState
dataclass
¶
Source code in packages/tangram_core/src/tangram_core/backend.py
57 58 59 60 61 62 63 64 65 66 67 68 69 | |
Runtime
¶
Manages the lifecycle of the Tangram backend, including the Uvicorn server, background services, and connection pools (Redis, HTTPX).
Source code in packages/tangram_core/src/tangram_core/backend.py
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 | |
start
async
¶
start() -> Runtime
Starts the backend runtime.
Source code in packages/tangram_core/src/tangram_core/backend.py
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 | |
wait
async
¶
wait() -> None
Waits for the server task to complete (e.g. via signal or internal error).
Source code in packages/tangram_core/src/tangram_core/backend.py
474 475 476 477 478 479 480 | |
stop
async
¶
stop() -> None
Stops the backend runtime.
Source code in packages/tangram_core/src/tangram_core/backend.py
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 | |
Config
dataclass
¶
Source code in packages/tangram_core/src/tangram_core/config.py
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 | |
server
class-attribute
instance-attribute
¶
server: ServerConfig = field(default_factory=ServerConfig)
channel
class-attribute
instance-attribute
¶
channel: ChannelConfig = field(
default_factory=ChannelConfig
)
plugins
class-attribute
instance-attribute
¶
Mapping of plugin name to plugin-specific config.
themes
class-attribute
instance-attribute
¶
themes: list[ThemeDefinition] = field(default_factory=list)
from_file
classmethod
¶
from_file(config_path: StrOrPathLike) -> Config
Source code in packages/tangram_core/src/tangram_core/config.py
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | |
Plugin
dataclass
¶
Stores the metadata and registered API routes, background services and frontend assets for a tangram plugin.
Packages should declare an entry point in the tangram_core.plugins group
in their pyproject.toml pointing to an instance of this class.
Source code in packages/tangram_core/src/tangram_core/plugin.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | |
frontend_path
class-attribute
instance-attribute
¶
frontend_path: str | None = None
Path to the compiled frontend assets, relative to the distribution root (editable) or package root (wheel).
config_class
class-attribute
instance-attribute
¶
config_class: type | None = None
The configuration class (dataclass or Pydantic model) for this plugin.
Fields annotated with tangram_core.config.Expose() will be exposed to the
frontend.
with_computed_fields
class-attribute
instance-attribute
¶
with_computed_fields: WithComputedFieldsFunction | None = (
None
)
Function to add additional dynamically computed fields to the frontend
configuration. It receives the backend state and the validated configuration object
(if config_class is set) or the raw dictionary, and should return a dictionary
of extra fields to merge.
lifespan
class-attribute
instance-attribute
¶
lifespan: Lifespan | None = None
Async context manager for plugin initialization and teardown.
services
class-attribute
instance-attribute
¶
dist_name
class-attribute
instance-attribute
¶
Name of the distribution (package) that provided this plugin, populated automatically during loading.
register_service
¶
register_service(
priority: Priority = 0,
) -> Callable[[ServiceFunc], ServiceFunc]
Decorator to register a background service function.
Services are long-running async functions that receive the BackendState and are started when the application launches.
Source code in packages/tangram_core/src/tangram_core/plugin.py
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | |
backend
¶
InjectBackendState
module-attribute
¶
InjectBackendState: TypeAlias = Annotated[
BackendState, Depends(get_state)
]
DEFAULT_THEMES
module-attribute
¶
DEFAULT_THEMES = {
"light": ThemeDefinition(
name="light",
background_color="#ffffff",
foreground_color="#000000",
surface_color="#f8f9fa",
border_color="#e7e7e7",
hover_color="#e9ecef",
accent1="oklch(0.5616 0.0895 251.64)",
accent1_foreground="#ffffff",
accent2="oklch(0.8021 0.11 92.43)",
accent2_foreground="#000000",
muted_color="#666666",
),
"dark": ThemeDefinition(
name="dark",
background_color="#1a1a1a",
foreground_color="#e0e0e0",
surface_color="#2d2d2d",
border_color="#404040",
hover_color="#343434",
accent1="oklch(0.5059 0.0895 251.64)",
accent1_foreground="#ffffff",
accent2="oklch(0.5059 0.0895 93.53)",
accent2_foreground="#ffffff",
muted_color="#999999",
),
}
BackendState
dataclass
¶
Source code in packages/tangram_core/src/tangram_core/backend.py
57 58 59 60 61 62 63 64 65 66 67 68 69 | |
Runtime
¶
Manages the lifecycle of the Tangram backend, including the Uvicorn server, background services, and connection pools (Redis, HTTPX).
Source code in packages/tangram_core/src/tangram_core/backend.py
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 | |
start
async
¶
start() -> Runtime
Starts the backend runtime.
Source code in packages/tangram_core/src/tangram_core/backend.py
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 | |
wait
async
¶
wait() -> None
Waits for the server task to complete (e.g. via signal or internal error).
Source code in packages/tangram_core/src/tangram_core/backend.py
474 475 476 477 478 479 480 | |
stop
async
¶
stop() -> None
Stops the backend runtime.
Source code in packages/tangram_core/src/tangram_core/backend.py
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 | |
get_state
async
¶
get_state(request: Request) -> BackendState
Source code in packages/tangram_core/src/tangram_core/backend.py
72 73 | |
get_distribution_path
¶
Get the local path of a distribution, handling both editable installs
(direct_url.json) and standard wheel installs.
See: https://packaging.python.org/en/latest/specifications/direct-url-data-structure/
Source code in packages/tangram_core/src/tangram_core/backend.py
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 | |
resolve_frontend
¶
Source code in packages/tangram_core/src/tangram_core/backend.py
116 117 118 119 | |
load_enabled_plugins
¶
Source code in packages/tangram_core/src/tangram_core/backend.py
122 123 124 125 126 127 128 129 130 131 132 133 134 135 | |
lifespan
async
¶
lifespan(
app: FastAPI,
backend_state: BackendState,
loaded_plugins: Iterable[Plugin],
) -> AsyncGenerator[None, None]
Source code in packages/tangram_core/src/tangram_core/backend.py
138 139 140 141 142 143 144 145 146 147 148 149 | |
default_cache_dir
¶
default_cache_dir() -> Path
Source code in packages/tangram_core/src/tangram_core/backend.py
152 153 154 155 156 157 158 159 160 | |
make_cache_route_handler
¶
make_cache_route_handler(
entry: CacheEntry, state: BackendState
) -> Callable[..., Awaitable[FileResponse]]
Factory function that creates a route handler for caching and serving files. Dynamically handles URL parameters found in both serve_route and origin.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entry
|
CacheEntry
|
Cache entry configuration |
required |
state
|
BackendState
|
Backend state with http_client for fetching remote resources |
required |
Returns:
| Type | Description |
|---|---|
Callable[..., Awaitable[FileResponse]]
|
Async function that handles the route with dynamic parameters |
Source code in packages/tangram_core/src/tangram_core/backend.py
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 | |
extract_frontend_config
¶
Source code in packages/tangram_core/src/tangram_core/backend.py
228 229 230 231 232 233 234 235 | |
create_app
¶
create_app(
backend_state: BackendState,
loaded_plugins: Iterable[Plugin],
) -> FastAPI
Source code in packages/tangram_core/src/tangram_core/backend.py
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 | |
run_channel_service
async
¶
run_channel_service(config: Config) -> None
Source code in packages/tangram_core/src/tangram_core/backend.py
387 388 389 390 391 392 393 394 395 396 397 398 399 400 | |
get_log_config_dict
¶
Source code in packages/tangram_core/src/tangram_core/backend.py
510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 | |
config
¶
HasTopbarUiConfig
¶
HasSidebarUiConfig
¶
ServerConfig
dataclass
¶
ChannelConfig
dataclass
¶
Source code in packages/tangram_core/src/tangram_core/config.py
42 43 44 45 46 47 48 49 50 51 | |
UrlConfig
dataclass
¶
StyleSpecification
dataclass
¶
Source code in packages/tangram_core/src/tangram_core/config.py
63 64 65 66 67 68 69 | |
MapConfig
dataclass
¶
Source code in packages/tangram_core/src/tangram_core/config.py
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 | |
style
class-attribute
instance-attribute
¶
style: Url | StyleName | StyleSpecification = (
"https://basemaps.cartocdn.com/gl/voyager-gl-style/style.json"
)
styles
class-attribute
instance-attribute
¶
styles: list[Url | StyleSpecification] = field(
default_factory=list
)
ThemeDefinition
dataclass
¶
Source code in packages/tangram_core/src/tangram_core/config.py
102 103 104 105 106 107 108 109 110 111 112 113 114 | |
AdaptiveTheme
dataclass
¶
CoreConfig
dataclass
¶
Source code in packages/tangram_core/src/tangram_core/config.py
123 124 125 126 127 128 | |
theme
class-attribute
instance-attribute
¶
theme: str | AdaptiveTheme = field(
default_factory=AdaptiveTheme
)
CacheEntry
dataclass
¶
Source code in packages/tangram_core/src/tangram_core/config.py
131 132 133 134 135 136 137 138 139 140 | |
origin
class-attribute
instance-attribute
¶
origin: str | None = None
Origin URL. If None, the local file is served directly.
local_path
class-attribute
instance-attribute
¶
local_path: Path | None = None
Local path to cache the file.
CacheConfig
dataclass
¶
Source code in packages/tangram_core/src/tangram_core/config.py
143 144 145 | |
entries
class-attribute
instance-attribute
¶
entries: list[CacheEntry] = field(default_factory=list)
Config
dataclass
¶
Source code in packages/tangram_core/src/tangram_core/config.py
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 | |
server
class-attribute
instance-attribute
¶
server: ServerConfig = field(default_factory=ServerConfig)
channel
class-attribute
instance-attribute
¶
channel: ChannelConfig = field(
default_factory=ChannelConfig
)
plugins
class-attribute
instance-attribute
¶
Mapping of plugin name to plugin-specific config.
themes
class-attribute
instance-attribute
¶
themes: list[ThemeDefinition] = field(default_factory=list)
from_file
classmethod
¶
from_file(config_path: StrOrPathLike) -> Config
Source code in packages/tangram_core/src/tangram_core/config.py
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | |
ExposeField
dataclass
¶
Marker class for typing.Annotated to expose fields to the frontend.
Source code in packages/tangram_core/src/tangram_core/config.py
207 208 209 | |
FrontendChannelConfig
dataclass
¶
FrontendThemeConfig
dataclass
¶
Source code in packages/tangram_core/src/tangram_core/config.py
224 225 226 227 | |
FrontendConfig
dataclass
¶
Source code in packages/tangram_core/src/tangram_core/config.py
230 231 232 233 234 | |
default_config_file
¶
default_config_file() -> Path
Source code in packages/tangram_core/src/tangram_core/config.py
13 14 15 16 17 18 19 20 21 22 23 | |
try_resolve_local_style
¶
try_resolve_local_style(
base_dir: Path,
style: Url | StyleName | StyleSpecification,
*,
allow_style_name: bool,
) -> Url | StyleSpecification
Source code in packages/tangram_core/src/tangram_core/config.py
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | |
plugin
¶
ServiceAsyncFunc
module-attribute
¶
ServiceFunc
module-attribute
¶
ServiceFunc: TypeAlias = (
ServiceAsyncFunc | Callable[[BackendState], None]
)
WithComputedFieldsFunction
module-attribute
¶
Lifespan
module-attribute
¶
Lifespan: TypeAlias = Callable[
[BackendState],
AbstractAsyncContextManager[None, bool | None],
]
Plugin
dataclass
¶
Stores the metadata and registered API routes, background services and frontend assets for a tangram plugin.
Packages should declare an entry point in the tangram_core.plugins group
in their pyproject.toml pointing to an instance of this class.
Source code in packages/tangram_core/src/tangram_core/plugin.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | |
frontend_path
class-attribute
instance-attribute
¶
frontend_path: str | None = None
Path to the compiled frontend assets, relative to the distribution root (editable) or package root (wheel).
config_class
class-attribute
instance-attribute
¶
config_class: type | None = None
The configuration class (dataclass or Pydantic model) for this plugin.
Fields annotated with tangram_core.config.Expose() will be exposed to the
frontend.
with_computed_fields
class-attribute
instance-attribute
¶
with_computed_fields: WithComputedFieldsFunction | None = (
None
)
Function to add additional dynamically computed fields to the frontend
configuration. It receives the backend state and the validated configuration object
(if config_class is set) or the raw dictionary, and should return a dictionary
of extra fields to merge.
lifespan
class-attribute
instance-attribute
¶
lifespan: Lifespan | None = None
Async context manager for plugin initialization and teardown.
services
class-attribute
instance-attribute
¶
dist_name
class-attribute
instance-attribute
¶
Name of the distribution (package) that provided this plugin, populated automatically during loading.
register_service
¶
register_service(
priority: Priority = 0,
) -> Callable[[ServiceFunc], ServiceFunc]
Decorator to register a background service function.
Services are long-running async functions that receive the BackendState and are started when the application launches.
Source code in packages/tangram_core/src/tangram_core/plugin.py
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | |
scan_plugins
¶
scan_plugins() -> EntryPoints
Source code in packages/tangram_core/src/tangram_core/plugin.py
87 88 | |
load_plugin
¶
load_plugin(entry_point: EntryPoint) -> Plugin | None
Instantiates the plugin object defined in the entry point and injects the name of the distribution into it.
Source code in packages/tangram_core/src/tangram_core/plugin.py
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 | |
redis
¶
Subscriber
¶
Source code in packages/tangram_core/src/tangram_core/redis.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 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 | |
subscribe
async
¶
subscribe() -> None
Source code in packages/tangram_core/src/tangram_core/redis.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | |
cleanup
async
¶
cleanup() -> None
Source code in packages/tangram_core/src/tangram_core/redis.py
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | |
is_active
¶
is_active() -> bool
Return True if the subscriber is actively listening.
Source code in packages/tangram_core/src/tangram_core/redis.py
81 82 83 | |
message_handler
abstractmethod
async
¶
Source code in packages/tangram_core/src/tangram_core/redis.py
85 86 87 88 89 | |
tangram_core._core
¶
ChannelConfig
¶
__new__
¶
__new__(
host: str,
port: int,
redis_url: str,
jwt_secret: str,
jwt_expiration_secs: int,
id_length: int,
) -> ChannelConfig