connectd/matchd/__init__.py
root 99946bfef5 autonomous daemon with platform-native contact detection
- determine_contact_method now recognizes mastodon/bluesky users by platform
- username IS the handle for platform-native users
- fixed orphaned matches table issue
- wave 1 intros sent successfully
2025-12-16 09:22:58 +00:00

10 lines
304 B
Python

"""
matchd - pairing module
generates fingerprints, finds overlaps, ranks matches
"""
from .fingerprint import generate_fingerprint
from .overlap import find_overlap
from .rank import rank_matches, find_all_matches
__all__ = ['generate_fingerprint', 'find_overlap', 'rank_matches', 'find_all_matches']