Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 728 Bytes

README.md

File metadata and controls

40 lines (32 loc) · 728 Bytes

Setup Instructions

  1. Clone the Repository:

    git clone https://github.com/Daniel-Saravia/fires_experiment.git
    cd try_fires
  2. Create & Activate Virtual Environment:

    python3 -m venv fires
    source fires/bin/activate # For Linux/macOS
    fires\Scripts\activate # For Windows
  3. Install Dependencies:

    pip install --upgrade pip
    pip install -r requirements.txt
  4. Verify Installation:

    pip list # Check installed packages
  5. Run Web Scraper:

    python start.py
  6. Check Database:

    sqlite3 data.db
    SELECT \* FROM events;
    .exit
    come back