Package for automatically applying to relevant jobs on popular job boards.
Project description
speedapply
Package for automatically applying to relevant jobs on popular job boards.
This package is designed to crawl job boards like Monster, LinkedIn, and Indeed and automatically apply for jobs that you want. As of now only Monster is supported and only Speed Apply jobs are applied to. Further functionality needs to be added. speedapply
uses selenium to traverse these web pages.
Usage
-
Install using pip
$ pip install speedapply
In addition to the python package requirements, speedapply
requires a selenium
-compatible webdriver (e.g. chromedriver).
-
Create a new folder to house the apply bot
$ python -m speedapply new_bot
-
Edit
new_bot/settings.py
to choose jobs and locations you want.
# new_bot/settings.py
...
# job titles
TITLES = [
'Entry Level Software Engineer',
'Data Engineer',
'Machine Learning Engineer'
]
# job locations
LOCATIONS = [
'New York, Ny',
'Atlanta, GA',
'Los Angeles, CA'
]
...
-
Set environment variables for your username and password that get accessed by the bot in
new_bot/bots.py
. For example formonster.com
:$ export MONSTER_USERNAME="..." MONSTER_PASSWORD="..."
# new_bot/bots.py
import os
from speedapply.bots import ApplyBot
from speedapply.sites import Monster
monster_bot = ApplyBot(
site=Monster,
auth=(
os.environ['MONSTER_USERNAME'],
os.environ['MONSTER_PASSWORD']
)
)
- Import the
bots
andsettings
and run thestart
function innew_bot/run.py
.
# new_bot/run.py
import bots
import settings
from speedapply import start
if __name__ == "__main__":
start(bots, settings)
$ python new_bot/run.py
This will begin applying to each job title in each location on each job board specified.
Leave it running and easily apply to hundreds of jobs per day!
Development
There are many improvements that can be made:
- bots for more job boards
- faster loading and filtering of jobs (possibly from APIs instead of web-scraping)
- multiple drivers for quicker applying
- better logging of jobs applied to
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file speedapply-0.0.0.tar.gz
.
File metadata
- Download URL: speedapply-0.0.0.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 639e9a5476566154e4f49a883a39d35b8abf749aff4f27b660a568aa6e68bcd2 |
|
MD5 | b01e2af5fd3e0e9cf1cd625c6cea057a |
|
BLAKE2b-256 | 86a9365157cc51b6a5c78b47afa385daa48bbb6ed03f81bbf97048c21ba92a6b |
File details
Details for the file speedapply-0.0.0-py3-none-any.whl
.
File metadata
- Download URL: speedapply-0.0.0-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7777379a80ef35844f083abd502336d63f51634f90ea3e848b374c6005a9dacf |
|
MD5 | bc7227ed0a4cf2a63505e56d0bba0420 |
|
BLAKE2b-256 | 9eababddf893dbdb62f8dc6ebee728f8c84808deb3384c07392d1cb13daeaac6 |