[docs] update readme

This commit is contained in:
Cullen Watson
2023-10-18 14:32:21 -05:00
committed by GitHub
parent f2cc74b7f2
commit ff1eb0f7b0

View File

@@ -43,11 +43,7 @@ jobs = scrape_jobs(
) )
print(f"Found {len(jobs)} jobs") print(f"Found {len(jobs)} jobs")
print(jobs.head()) print(jobs.head())
jobs.to_csv("jobs.csv", index=False) jobs.to_csv("jobs.csv", index=False) # / to_xlsx
# output to Excel
# jobs.to_xlsx('jobs.xlsx', index=False)
``` ```
### Output ### Output
@@ -101,7 +97,7 @@ JobPost
└── date_posted (date) └── date_posted (date)
└── emails (str) └── emails (str)
└── num_urgent_words (int) └── num_urgent_words (int)
└── is_remote (bool) - just for Indeed at the momen └── is_remote (bool)
``` ```
### Exceptions ### Exceptions
@@ -154,7 +150,7 @@ You can specify the following countries when searching on Indeed (use the exact
**Q: Encountering issues with your queries?** **Q: Encountering issues with your queries?**
**A:** Try reducing the number of `results_wanted` and/or broadening the filters. If problems **A:** Try reducing the number of `results_wanted` and/or broadening the filters. If problems
persist, [submit an issue](https://github.com/cullenwatson/JobSpy/issues). persist, [submit an issue](https://github.com/Bunsly/JobSpy/issues).
--- ---