mirror of
https://github.com/sudoxnym/connectd.git
synced 2026-04-14 03:27:24 +00:00
- 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
10 lines
304 B
Python
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']
|