mirror of
https://github.com/Bunsly/JobSpy.git
synced 2026-03-04 19:44:30 -08:00
10 lines
183 B
Python
10 lines
183 B
Python
from jobspy import scrape_jobs
|
|
|
|
|
|
def test_indeed():
|
|
result = scrape_jobs(
|
|
site_name="indeed",
|
|
search_term="software engineer",
|
|
)
|
|
assert result is not None
|