For a given month/year range, create a list of all songs that have appeared on Billboard's Hot 100 for that time range, sorted by the number of weeks each song appeared on the list. Results are written to the file output.txt
- Install Python3 and VirtualEnv
- Run the following code
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
python3 main.py [start_year] [start_month] [end_year] [end_month]
Leaving any argument blank will default to the current year/month
python3 tests.py