From 5974274496714bbb4117f226736f23524c1efa3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?AL=C4=B0=20DEN=C4=B0Z=20TARTMA?= Date: Wed, 1 Apr 2026 22:26:21 +0300 Subject: [PATCH] Fix SQLite casing in Database Drivers section This PR corrects the casing of "SQLite" (from "SQlite") in the Database Drivers section to align with the official project name and maintain consistency across the documentation. Replaced "SQlite" with "SQLite" in headings and descriptions. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a10a4fa..dd3e66a 100644 --- a/README.md +++ b/README.md @@ -393,9 +393,9 @@ _Libraries for connecting and operating databases._ - [pymysql](https://github.com/PyMySQL/PyMySQL) - A pure Python MySQL driver compatible to mysql-python. - PostgreSQL - [awesome-postgres](https://github.com/dhamaniasad/awesome-postgres) - [psycopg](https://github.com/psycopg/psycopg) - The most popular PostgreSQL adapter for Python. -- SQlite - [awesome-sqlite](https://github.com/planetopendata/awesome-sqlite) +- SQLite - [awesome-sqlite](https://github.com/planetopendata/awesome-sqlite) - [sqlite-utils](https://github.com/simonw/sqlite-utils) - Python CLI utility and library for manipulating SQLite databases. - - [sqlite3](https://docs.python.org/3/library/sqlite3.html) - (Python standard library) SQlite interface compliant with DB-API 2.0. + - [sqlite3](https://docs.python.org/3/library/sqlite3.html) - (Python standard library) SQLite interface compliant with DB-API 2.0. - Other Relational Databases - [clickhouse-driver](https://github.com/mymarilyn/clickhouse-driver) - Python driver with native interface for ClickHouse. - [mssql-python](https://github.com/microsoft/mssql-python) - Official Microsoft driver for SQL Server and Azure SQL, built on ODBC for high performance and low memory usage.