From 06f13f7beb637edef9b3e96086b54cf0bce82b8b Mon Sep 17 00:00:00 2001 From: n3ddu8 <13167147+n3ddu8@users.noreply.github.com> Date: Mon, 1 Sep 2025 08:33:29 +0100 Subject: [PATCH] docs: renamed project --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d676b2b..268217b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ -# ingest-small +# ingest-python -**ingest-small** is a Python-based ingestion tool for extracting data from source systems and persisting it in a SQL Server database. -It is designed for **small to medium datasets**—where "small" means datasets that do not require big data tooling. +**ingest-python** is an ingestion tool written in Python (relying only on locally installable packages such as Pandas) designed to extract data from source systems and persist it into SQL Server. It is intended for small datasets, where "small" refers to data volumes that do not require big data frameworks. The tool supports ingesting datasets larger than available memory through **Pandas chunking**. It forms the **Extract and Load** portion of an ELT pipeline. @@ -9,7 +8,7 @@ The tool supports ingesting datasets larger than available memory through **Pand ## How it Works -`ingest-small` is structured around a **Base Class** that encapsulates core SQL Server operations. +`ingest-python` is structured around a **Base Class** that encapsulates core SQL Server operations. Key methods include: - **read_params**: Reads an `entity_params` table and parses parameters into a dictionary. See [Entity Params](#entity-params) for details.