Skip to main content

Canonical entity resolution, aliasing, and merges for MetaSPN systems

Project description

metaspn-entities

Identity layer for MetaSPN systems.

Features

  • Canonical entity IDs
  • Deterministic identifier normalization + alias resolution
  • Merge history and reversible soft undo
  • SQLite backend using stdlib sqlite3
  • Event emission payloads for EntityResolved, EntityMerged, EntityAliasAdded
  • Optional filesystem snapshot export

Quick usage

from metaspn_entities import EntityResolver

resolver = EntityResolver()
resolution = resolver.resolve("twitter_handle", "@some_handle")
events = resolver.drain_events()
print(resolution.entity_id, resolution.confidence)

API notes

  • resolve(identifier_type, value, context=None) -> EntityResolution
  • add_alias(entity_id, identifier_type, value, ...)
  • merge_entities(from_entity_id, to_entity_id, reason, ...)
  • undo_merge(from_entity_id, to_entity_id, ...) (implemented as reverse merge with redirect correction)
  • drain_events() -> list[EmittedEvent]
  • export_snapshot(output_path) to inspect SQLite state as JSON

Event Contract Guarantees

drain_events() returns EmittedEvent objects whose event_type and payload are schema-compatible with metaspn-schemas entity events.

  • EntityResolved payload keys:
    • entity_id, resolver, resolved_at, confidence, schema_version
  • EntityMerged payload keys:
    • entity_id, merged_from, merged_at, reason, schema_version
  • EntityAliasAdded payload keys:
    • entity_id, alias, alias_type, added_at, schema_version

Datetime fields are emitted as UTC ISO-8601 strings for deterministic serialization.

M0 Ingestion Adapter

For worker/runtime integration, use resolve_normalized_social_signal(...) with a normalized signal envelope.

from metaspn_entities import EntityResolver, resolve_normalized_social_signal

resolver = EntityResolver()
signal = {
    "source": "social.ingest",
    "payload_type": "SocialPostSeen",
    "payload": {
        "platform": "twitter",
        "author_handle": "@some_handle",
        "profile_url": "https://example.com/profiles/some-handle",
    },
}

result = resolve_normalized_social_signal(resolver, signal)
print(result.entity_id, result.confidence)
for event in result.emitted_events:
    print(event.event_type, event.payload)

Adapter behavior:

  • Extracts deterministic identifier candidates from normalized payloads.
  • Resolves a primary identifier, then adds remaining identifiers as aliases.
  • Returns only events produced during the adapter call.

M1 Context API

Profiler/router workers can read consolidated context using:

  • resolver.entity_context(entity_id, recent_limit=10)
  • resolver.confidence_summary(entity_id)

Both APIs resolve canonical redirects first, so merged IDs return coherent context.

M2 Recommendation Context API

Recommendation and drafter workers can consume:

  • resolver.recommendation_context(entity_id)

The recommendation context includes:

  • identity confidence
  • activity recency (days)
  • interaction history summary (evidence count + source distribution)
  • preferred channel hint
  • relationship stage hint (cold / warm / engaged)
  • merge-safe continuity fields keyed to canonical entity IDs

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

metaspn_entities-0.1.6.tar.gz (15.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

metaspn_entities-0.1.6-py3-none-any.whl (14.1 kB view details)

Uploaded Python 3

File details

Details for the file metaspn_entities-0.1.6.tar.gz.

File metadata

  • Download URL: metaspn_entities-0.1.6.tar.gz
  • Upload date:
  • Size: 15.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for metaspn_entities-0.1.6.tar.gz
Algorithm Hash digest
SHA256 491a024e93820655d6b176db9a66f5316fb80d229760ca520a6b31eb0ca95200
MD5 aab8d60b712dd4b83bdcf66c3853e073
BLAKE2b-256 e7925847800b82c30d94cb987271584cc2596f703a9be67b20a549df6401991f

See more details on using hashes here.

Provenance

The following attestation bundles were made for metaspn_entities-0.1.6.tar.gz:

Publisher: publish.yml on MetaSPN/metaspn-entities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file metaspn_entities-0.1.6-py3-none-any.whl.

File metadata

File hashes

Hashes for metaspn_entities-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 e23dce91d1298578f6a0a2bbe2ed049a7b8faa0d268d9d0e8b6185f947839def
MD5 d724e50f2781942369d609c4a4e42238
BLAKE2b-256 f642f8d3340a9c842cde481b515e9e71497da150ffeafa509f07943357819725

See more details on using hashes here.

Provenance

The following attestation bundles were made for metaspn_entities-0.1.6-py3-none-any.whl:

Publisher: publish.yml on MetaSPN/metaspn-entities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page