This commit is contained in:
2025-04-10 06:46:58 +00:00
parent fbf15876dc
commit c4e9fc3810

View File

@@ -27,7 +27,7 @@ from difflib import SequenceMatcher
import unicodedata
import csv
import gender_guesser.detector as gender
from urllib.parse import urlparse
from urllib.parse import urlparse, urlencode
# Optional: tiktoken für Token-Zählung (Modus 8)
try:
@@ -1582,7 +1582,6 @@ def search_linkedin_contacts(company_name, website, position_query, crm_kurzform
for result in data["organic_results"]:
title = result.get("title", "")
if crm_kurzform.lower() in title.lower():
# Aufteilen des Titels in Namens- und Positionsbestandteile
if "" in title:
parts = title.split("")
elif "-" in title: