bugfix
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user