Skip to content

Commit

Permalink
docs:readme
Browse files Browse the repository at this point in the history
  • Loading branch information
cullenwatson authored Jan 1, 2025
1 parent 447fe70 commit 2bbb42c
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ companies = account.scrape_companies(
company_names=['openai', 'microsoft']
)

# fetch connections (also gets their contact info if available)
connections = account.scrape_connections(
extra_profile_data=True,
max_results=50
)

# export any of the results to csv
staff.to_csv("staff.csv", index=False)
```
Expand Down Expand Up @@ -170,11 +176,10 @@ Optional

```plaintext
├── max_results (int):
| maximum number of connections to fetch (default is very high)
| e.g. 50 to fetch first 50 connections
| maximum number of connections to fetch
|
├── extra_profile_data (bool):
| fetches educations, experiences, skills, certifications for each connection (Default false)
| fetches educations, experiences, skills, certifications & contact info for each connection (Default false)
```

### LinkedIn notes
Expand Down

0 comments on commit 2bbb42c

Please sign in to comment.