Jobtimize
is a python package which collects, standardizes and completes information about job offers published on job search platforms.
The package is mainly based on scraping and text classification to fill in missing data.
Release | Usage | Development |
---|---|---|
beautifulsoup4
jsonschema
lxml
pandas
The safest way to install Jobtimize
is to go through pip
pip install Jobtimize
It is also possible to get the latest stable version with Anaconda Cloud
conda install -c lrakotoson jobtimize
The installation with git allows to have the latest version. However it can have some bugs.
pip install git+https://github.com/HireCoffee/Jobtimize.git
As Jobtimize
is a package, in python you just have to import it.
The main function (for now) is Jobtimize.jobscrap
.
from jobtimize import scraper
df = jobscrap(["Data Scientist", "Data Analyst"],
["UK", "FR"]
)
df.head()
The df
object is a dataframe pandas, so it inherits all its methods.
🎊 Firstly, thank you for giving your time to contribute to Jobtimize
. 🎊
If you have a new feature to submit, don't hesitate to open an issue (By checking "new feature" to make it easier to read) We can discuss it freely there.
Then you can make a "pull request" as explained in the contribution guidelines.
Same for all contributions, code improvement, documentation writing, translations... all ideas are welcome! Check out the guidelines to make it easier.
Jobtimize
gets better with contributions.