-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from cullenwatson/fix/class-type-error
- refactor & #41 bug fix
- Loading branch information
Showing
7 changed files
with
21 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "python-jobspy" | ||
version = "1.1.1" | ||
version = "1.1.2" | ||
description = "Job scraper for LinkedIn, Indeed & ZipRecruiter" | ||
authors = ["Zachary Hampton <[email protected]>", "Cullen Watson <[email protected]>"] | ||
readme = "README.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from ..jobspy import scrape_jobs | ||
|
||
|
||
def test_all(): | ||
result = scrape_jobs( | ||
site_name=["linkedin", "indeed", "zip_recruiter"], | ||
search_term="software engineer", | ||
results_wanted=5, | ||
) | ||
assert result is not None and result.errors.empty is True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
from jobspy import scrape_jobs | ||
from ..jobspy import scrape_jobs | ||
|
||
|
||
def test_linkedin(): | ||
result = scrape_jobs( | ||
site_name="linkedin", | ||
search_term="software engineer", | ||
) | ||
assert result is not None | ||
assert result is not None and result.errors.empty is True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters