You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# job_search contains jobs from your logged in front page:
116
+
# - job_search.recommended_jobs
117
+
# - job_search.still_hiring
118
+
# - job_search.more_jobs
119
+
120
+
job_listings = job_search.search("Machine Learning Engineer") # returns the list of `Job` from the first page
121
+
```
122
+
51
123
### Scraping sites where login is required first
52
124
1. Run `ipython` or `python`
53
125
2. In `ipython`/`python`, run the following code (you can modify it if you need to specify your driver)
@@ -117,10 +189,10 @@ This is the interests they have. A list of `linkedin_scraper.scraper.Interest`
117
189
#### `accomplishment`
118
190
This is the accomplishments they have. A list of `linkedin_scraper.scraper.Accomplishment`
119
191
120
-
### `company`
192
+
####`company`
121
193
This the most recent company or institution they have worked at.
122
194
123
-
### `job_title`
195
+
####`job_title`
124
196
This the most recent job title they have.
125
197
126
198
#### `driver`
@@ -136,7 +208,7 @@ person = Person("https://www.linkedin.com/in/andre-iguodala-65b48ab5", driver =
136
208
When this is **True**, the scraping happens automatically. To scrape afterwards, that can be run by the `scrape()` function from the `Person` object.
137
209
138
210
139
-
### `scrape(close_on_complete=True)`
211
+
####`scrape(close_on_complete=True)`
140
212
This is the meat of the code, where execution of this function scrapes the profile. If *close_on_complete* is True (which it is by default), then the browser will close upon completion. If scraping of other profiles are desired, then you might want to set that to false so you can keep using the same driver.
141
213
142
214
@@ -194,7 +266,7 @@ company = Company("https://ca.linkedin.com/company/google", driver=driver)
194
266
```
195
267
196
268
197
-
### `scrape(close_on_complete=True)`
269
+
####`scrape(close_on_complete=True)`
198
270
This is the meat of the code, where execution of this function scrapes the company. If *close_on_complete* is True (which it is by default), then the browser will close upon completion. If scraping of other companies are desired, then you might want to set that to false so you can keep using the same driver.
0 commit comments