dir structure

pull/35/head
Cullen Watson 2023-09-03 12:30:13 -05:00
parent 8579c8e985
commit 24faa258df
5 changed files with 12 additions and 3 deletions

View File

@ -14,7 +14,7 @@
### Usage ### Usage
```python ```python
from python_jobspy.jobspy import scrape_jobs from jobspy import scrape_jobs
import pandas as pd import pandas as pd
jobs: pd.DataFrame = scrape_jobs( jobs: pd.DataFrame = scrape_jobs(

View File

View File

@ -1,4 +1,4 @@
from src.jobspy import scrape_jobs from jobspy import scrape_jobs
def test_indeed(): def test_indeed():

View File

@ -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

View File

@ -1,4 +1,4 @@
from src.jobspy import scrape_jobs from jobspy import scrape_jobs
def test_ziprecruiter(): def test_ziprecruiter():