This API provides a seamless solution for uploading CSV files, parsing the data, and storing it in a PostgreSQL database. I
- CSV Upload: Easily upload CSV files through a simple API endpoint.
- Data Parsing: Parse CSV data and convert it into structured JSON format for database storage.
- PostgreSQL Integration: Store parsed CSV data directly into a PostgreSQL database for efficient data management.
- Data Analysis: Perform various data analysis operations such as age distribution calculation, and more.
To configure the API, create a .env file in the root directory of the project and add the following environment variables:
PORT
DB_USER
DB_HOST
DB_NAME
DB_PASSWORD
DB_PORT
FILE_PATH
- tab (\t) is the delimiter for csv.
- id in database is automatically incremented by 1 for every insert query.

