mirror of
https://github.com/sudoxnym/connectd.git
synced 2026-04-14 11:37:42 +00:00
- add HOST_USER env var for auto-discovery from github - merge HOST_* env vars with scraped profile data - fix countdown timers to use started_at when no cycles run - add lemmy, discord, bluesky fields to priority_users - expand API user endpoint with all platform handles - update HA sensor with full user profile attributes - add HAOS add-on structure for one-click install - update version to 1.1.0 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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']
|