Metadata-Version: 2.4
Name: PyDbLite3
Version: 3.2.0
Summary: A lightweight database engine in Python
Author: Bendik Rønning Opstad
Author-email: Pierre Quentel <pierre.quentel@gmail.com>, Viacheslav Vic Bukhantsov <vic.bukhantsov@gmail.com>
License-Expression: BSD-3-Clause
Project-URL: Homepage, https://github.com/sdh-global/PyDbLite
Keywords: Python,database,engine,SQLite
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
License-File: LICENCE.txt
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: tox; extra == "dev"
Dynamic: license-file

PyDbLite
=============

PyDbLite is

* a fast, pure-Python, untyped, in-memory database engine, using
  Python syntax to manage data, instead of SQL
* a pythonic interface to SQLite using the same syntax as the
  pure-Python engine for most operations (except database connection
  and table creation because of each database specificities)

PyDbLite is suitable for a small set of data where a fully fledged DB would be overkill.

Supported Python versions: 3.9+
