This is a Python Crash Course project from the CSV chapter.
This project reads, analyzes, and visualizes earthquake data using CSV files. It demonstrates working with Python's built-in csv module and basic data handling.
- Clone the repository:
git clone https://github.com/<username>/python-crash-course-eq_data.git
Navigate to the project folder:
Copy code cd python-crash-course-eq_data (Optional) Create a virtual environment and activate it:
Copy code python -m venv 11_env 11_env\Scripts\activate # Windows source 11_env/bin/activate # macOS/Linux Install any dependencies (if applicable):
Copy code pip install -r requirements.txt Usage Run your Python scripts to analyze earthquake data:
Copy code python your_script.py The project may include multiple scripts for different datasets or analyses.
Features Read CSV files using Python's csv module.
Analyze earthquake data (counts, statistics, etc.).
Optional: visualize data with matplotlib or other libraries.
Files eq_data/ – main project scripts
data/ – earthquake CSV files (or sample data)
README.md – project description
requirements.txt – Python dependencies (if any)