Ishango_Assessments
Ishango is an NGO based in London, that provides African students the chance to work on Data Science projects for companies all around the world. To assess the candidates, they ask them to perform coding challenges/problems via an online coding platform.
Ishango wants to automatically (and periodically) retrieve the results of these assessments - this repo contains the code to "solve" this problem.
The structure of the project is the following:
.
├── ...
├── src/scrapping # Folder that holds the main files and the data extracts
│ ├── credentials.py # File to store the credentials to acess the platform and the Postgres DB
│ ├── definitions.py # File to store constants and strings (edit the paths for each assessment here)
│ ├── results.py # Main app file (should be the one called to retrieve the results)
│ └── tools.py # All functions used by the main app
├── tests # Tests folder, to assess the functions used by the package
└── README.md