Welcome! In this repository, you can see the Datasets, APIs and the code I've used and developed to make necessary charts for my 2025 US Macroeconomic Analysis.
Follow the steps below after cloning your repository to run the Jupyter Notebook on your devices as well.
This guide explains how to set up your environment variables and install project dependencies.
- Create a new file named
.envin your project's root directory - Copy the contents below into your
.envfile, replacing the placeholder values with your actual credentials:
# API Keys
API_KEY=your_api_key
SECRET_KEY=your_secret_key
Important: Never commit your .env file to version control. Make sure it's listed in your .gitignore file.
- Install the requirements using pip:
pip install -r requirements.txt- If you encounter permission errors during installation, try using:
pip install --user -r requirements.txt
- Make sure all environment variables in the .env file are properly set before running the application
- Verify that your virtual environment is activated (you should see
(venv)in your terminal prompt)
- Keep your .env values secure and never share them publicly