The project comprises three classes: DataExtractor, DatabaseConnector, and DataCleaning module. Each class serves a distinct purpose:
-
DataExtractor Class Functionality: Extracts data from various sources, such as RDS tables, PDFs, APIs, S3 buckets, and JSON files.
Aim: Facilitates flexible and reusable data extraction methods for diverse use cases. Learning: Demonstrates the use of APIs, parallel processing, and data extraction from different sources.
-
DatabaseConnector Class Functionality: Connects to a database, lists tables, and uploads data to a specified table.
Aim: Streamlines database operations and provides a modular approach to database connectivity. Learning: Highlights database connection, SQLAlchemy usage, and data upload to a relational database.
-
DataCleaning Module Functionality: Contains methods for cleaning and transforming data in various categories, such as user data, card data, store data, product data, order data, and date data.
Aim: Ensures data cleanliness and standardization for further analysis or storage. Learning: Showcases data cleaning techniques, datetime conversions, and column manipulation.
To create a data extracting and cleaning tool.
- Object-Oriented Programming (OOP): Understanding of classes, methods, and attributes in Python.
- Data Extraction Techniques: Handling diverse data sources, including databases, PDFs, APIs, S3 buckets, and JSON files.
- Database Operations: Connecting to databases, querying tables, and uploading data using SQLAlchemy.
- Data Cleaning and Transformation: Techniques for cleaning and transforming data to meet specific requirements.
- SQL Querying: Proficiency in writing SQL queries to retrieve, filter, and manipulate data from relational databases.
- Data Type Transformation: Knowledge of converting and standardizing data types within SQL, such as changing column types and handling data type conversions.
- Database Schema Understanding: Understanding and working with the structure of a relational database, including tables, columns, and relationships.
- Data Integrity: Techniques for maintaining data integrity through constraints, data validation, and ensuring accurate data representation in the database.
- Data Filtering and Aggregation: Skill in using SQL to filter and aggregate data, enabling the extraction of meaningful insights from large datasets.
- Database Maintenance: Knowledge of routine database maintenance tasks, including updating records, adding new data, and ensuring consistent data quality.
Follow these steps to set up and run the project on your local machine.
Make sure you have the following software installed on your machine:
- Python (version 3.12.0)
This project utilizes a virtual environment for managing dependencies. Follow the steps below to set it up:
- Open a terminal in the project directory.
- Run the following command to create a virtual environment:
python -m venv venv-name
On Windows:
.\venv\Scripts\activate
On macOS and Linux:
source venv/bin/activate
git clone https://github.com/gitYasir/multinational-retail-data-centralisation973 .
pip install -r requirements.txt
Use the DataExtractor class to extract data from various sources. Adjust parameters and endpoints as needed for specific use cases.
Populate the db_creds.yaml and postgres_db_creds.yaml files with your database credentials. Utilize the DatabaseConnector class to connect to a database and perform operations.
Utilize the DataCleaning class for cleaning and transforming data in different categories. Explore each cleaning method based on the type of data.
- MNRDC/
- business_enquiries
- queries.sql
- database_schema
- queries.sql
- venv
- data_cleaning.py
- data_extraction.py
- database_utils.py
- db_creds.yaml
- postgres_db_creds.yaml
- products.csv
- README.md
- requirements.txt
- business_enquiries
MIT License
Copyright (c) 2024
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.