An open API service indexing awesome lists of open source software.

https://github.com/znev434/sql_basic

Beginner-friendly SQL and SQLite project in Python – creating a database, adding data, and retrieving records.
https://github.com/znev434/sql_basic

data-science database mysql postgresql query sql sqlite3

Last synced: 2 months ago
JSON representation

Beginner-friendly SQL and SQLite project in Python – creating a database, adding data, and retrieving records.

Awesome Lists containing this project

README

          

# 📚 SQL Project: Library

## 🎯 Project Overview
This project demonstrates the fundamentals of working with **SQLite** databases in Python.
It covers creating a **Library** database, inserting book records, and executing SQL queries.

## 📁 Project Structure
- `tworz_baze.py` – Initializes the SQLite database and creates the `Ksiazki` table.
- `dodaj_dane.py` – Adds book records to the database.
- `zapytania.py` – Retrieves and displays book records.
- `Biblioteka.db` – SQLite database file (automatically generated).
- `README.md` – Project documentation.

## 🏆 Skills Demonstrated
- ✅ Designing and creating SQL tables
- ✅ Inserting records into a database
- ✅ Retrieving and filtering records using SQL queries
- ✅ Integrating SQLite with Python