tiled.adapters.mapping.MapAdapter

class tiled.adapters.mapping.MapAdapter(mapping: Dict[str, Any], *, structure: TableStructure | None = None, metadata: Dict[str, str | int | float | bool | Dict[str, Dict[str, str | int | float | bool | Dict[str, JSON] | List[JSON]]] | List[Dict[str, str | int | float | bool | Dict[str, JSON] | List[JSON]]]] | None = None, sorting: List[SortingItem] | None = None, specs: List[Spec] | None = None, access_policy: AccessPolicy | None = None, entries_stale_after: timedelta | None = None, metadata_stale_after: timedelta | None = None, must_revalidate: bool = True)[source]

Adapt any mapping (dictionary-like object) to Tiled.

__init__(mapping: Dict[str, Any], *, structure: TableStructure | None = None, metadata: Dict[str, str | int | float | bool | Dict[str, Dict[str, str | int | float | bool | Dict[str, JSON] | List[JSON]]] | List[Dict[str, str | int | float | bool | Dict[str, JSON] | List[JSON]]]] | None = None, sorting: List[SortingItem] | None = None, specs: List[Spec] | None = None, access_policy: AccessPolicy | None = None, entries_stale_after: timedelta | None = None, metadata_stale_after: timedelta | None = None, must_revalidate: bool = True) None[source]

Create a simple Adapter from any mapping (e.g. dict, OneShotCachedMap).

Parameters:
mappingdict-like
metadatadict, optional
specsList[str], optional
sortingList[Tuple[str, int]], optional
specsList[str], optional
access_policyAccessPolicy, optional
entries_stale_after: timedelta

This server uses this to communicate to the client how long it should rely on a local cache before checking back for changes.

metadata_stale_after: timedelta

This server uses this to communicate to the client how long it should rely on a local cache before checking back for changes.

must_revalidatebool

Whether the client should strictly refresh stale cache items.

Methods

__init__(mapping, *[, structure, metadata, ...])

Create a simple Adapter from any mapping (e.g. dict, OneShotCachedMap).

get(k[,d])

get_distinct(metadata, structure_families, ...)

Parameters:

items()

Returns:

keys()

Returns:

metadata()

Metadata about this Adapter.

new_variation(*args[, mapping, metadata, ...])

Parameters:

read([fields])

Parameters:

register_query(class_, translator)

register_query_lazy(toplevel, register)

Register a registration function which will be called if the toplevel module (e.g. 'pandas') is ever loaded.

search(query)

Parameters:

sort(sorting)

Parameters:

structure()

Returns:

values()

Returns:

Attributes

background_tasks

entries_stale_after

include_routers

metadata_stale_after

specs

access_policy

Returns:

entries_stale_at

Returns:

items_indexer

Returns:

keys_indexer

Returns:

metadata_stale_at

Returns:

must_revalidate

Returns:

query_registry

sorting

Returns:

structure_family

values_indexer

Returns:

fn