To get started with the "Codebase Cleanup" Exercise.
Create virtual environment:
conda create -n cleanup-env python=3.8conda activate cleanup-envInstall packages:
pip install -r requirements.txtObtain a premium AlphaVantage API Key here.
Sign up for a SendGrid Account, verify single sender, then obtain a Sendgrid API Key.
Set environment variables using a ".env" file approach:
ALPHAVANTAGE_API_KEY="..."
SENDER_ADDRESS="example@gmail.com"
SENDGRID_API_KEY="SG...."Run the game:
python app/game.py