Skip to content

Latest commit

Β 

History

History
36 lines (23 loc) Β· 897 Bytes

File metadata and controls

36 lines (23 loc) Β· 897 Bytes

πŸ› οΈ API to SQLite to CSV Automation

A simple Python automation script that pulls product data from a public API, processes it using pandas, stores the full dataset in a SQLite database, and exports the top 5 highest-rated products to a CSV file.


πŸ“Œ Project Goal

Automate a data pipeline that:

  1. Pulls data from a REST API
  2. Cleans and filters the data
  3. Stores it in a local database
  4. Outputs a report to CSV

This simulates real-world data workflows for e-commerce, product analytics, and business automation.


🧰 Tech Stack

  • Python 3
  • requests for API calls
  • pandas for data processing
  • sqlite3 for local database
  • JSON and CSV I/O

πŸ” Sample API Used


πŸ“ Project Structure