mirror of https://github.com/Bunsly/JobSpy
dir structure
parent
8579c8e985
commit
24faa258df
|
@ -14,7 +14,7 @@
|
|||
### Usage
|
||||
|
||||
```python
|
||||
from python_jobspy.jobspy import scrape_jobs
|
||||
from jobspy import scrape_jobs
|
||||
import pandas as pd
|
||||
|
||||
jobs: pd.DataFrame = scrape_jobs(
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
from src.jobspy import scrape_jobs
|
||||
from jobspy import scrape_jobs
|
||||
|
||||
|
||||
def test_indeed():
|
|
@ -0,0 +1,9 @@
|
|||
from jobspy import scrape_jobs
|
||||
|
||||
|
||||
def test_linkedin():
|
||||
result = scrape_jobs(
|
||||
site_name="linkedin",
|
||||
search_term="software engineer",
|
||||
)
|
||||
assert result is not None
|
|
@ -1,4 +1,4 @@
|
|||
from src.jobspy import scrape_jobs
|
||||
from jobspy import scrape_jobs
|
||||
|
||||
|
||||
def test_ziprecruiter():
|
Loading…
Reference in New Issue