├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── config.yaml ├── linkedineasyapply.py ├── main.py └── requirements.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | github: [madingess] -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madingess/EasyApplyBot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madingess/EasyApplyBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madingess/EasyApplyBot/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madingess/EasyApplyBot/HEAD/config.yaml -------------------------------------------------------------------------------- /linkedineasyapply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madingess/EasyApplyBot/HEAD/linkedineasyapply.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madingess/EasyApplyBot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madingess/EasyApplyBot/HEAD/requirements.txt --------------------------------------------------------------------------------