├── .gitignore ├── README.md ├── app.py ├── images └── chart.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/remote-jobs-hiring-without-whiteboards/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/remote-jobs-hiring-without-whiteboards/HEAD/app.py -------------------------------------------------------------------------------- /images/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/remote-jobs-hiring-without-whiteboards/HEAD/images/chart.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.13.0 2 | --------------------------------------------------------------------------------