Add new LinkedIn prospect discovery tool with three main components: - c4ai_discover.py for company and people scraping - c4ai_insights.py for org chart and decision maker analysis - Interactive graph visualization with company/people exploration Features include: - Configurable LinkedIn search and scraping - Org chart generation with decision maker scoring - Interactive network graph visualization - Company similarity analysis - Chat interface for data exploration Requires: crawl4ai, openai, sentence-transformers, networkx
38 lines
973 B
JSON
38 lines
973 B
JSON
{
|
|
"name": "LinkedIn People Card",
|
|
"baseSelector": "li.org-people-profile-card__profile-card-spacing",
|
|
"fields": [
|
|
{
|
|
"name": "profile_url",
|
|
"selector": "a.eETATgYTipaVsmrBChiBJJvFsdPhNpulhPZUVLHLo",
|
|
"type": "attribute",
|
|
"attribute": "href"
|
|
},
|
|
{
|
|
"name": "name",
|
|
"selector": ".artdeco-entity-lockup__title .lt-line-clamp--single-line",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "headline",
|
|
"selector": ".artdeco-entity-lockup__subtitle .lt-line-clamp--multi-line",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "followers",
|
|
"selector": ".lt-line-clamp--multi-line.t-12",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "connection_degree",
|
|
"selector": ".artdeco-entity-lockup__badge .artdeco-entity-lockup__degree",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "avatar_url",
|
|
"selector": ".artdeco-entity-lockup__image img",
|
|
"type": "attribute",
|
|
"attribute": "src"
|
|
}
|
|
]
|
|
} |