mirror of
https://github.com/Bunsly/JobSpy.git
synced 2026-03-04 19:44:30 -08:00
dir structure
This commit is contained in:
@@ -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(
|
||||||
|
|||||||
0
src/jobspy/tests/__init__.py
Normal file
0
src/jobspy/tests/__init__.py
Normal file
@@ -1,4 +1,4 @@
|
|||||||
from src.jobspy import scrape_jobs
|
from jobspy import scrape_jobs
|
||||||
|
|
||||||
|
|
||||||
def test_indeed():
|
def test_indeed():
|
||||||
9
src/jobspy/tests/test_linkedin.py
Normal file
9
src/jobspy/tests/test_linkedin.py
Normal 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
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
from src.jobspy import scrape_jobs
|
from jobspy import scrape_jobs
|
||||||
|
|
||||||
|
|
||||||
def test_ziprecruiter():
|
def test_ziprecruiter():
|
||||||
Reference in New Issue
Block a user