Metadata-Version: 2.1
Name: apsw
Version: 3.40.1.0
Summary: Another Python SQLite Wrapper
Home-page: https://github.com/rogerbinns/apsw/
Author: Roger Binns
Author-email: rogerb@rogerbinns.com
License: OSI Approved
Keywords: database,sqlite
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: C
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Database :: Front-Ends
License-File: LICENSE
APSW stands for **A**\ nother **P**\ ython **S**\ QLite **W**\ rapper. APSW
supports CPython 3.6 onwards.
About
=====
APSW is a Python wrapper for the `SQLite `__
embedded relational database engine. It focuses translating between
the complete `SQLite C API `__
and `Python's C API `__,
letting you get the most out of SQLite from Python.
It is recommended to use the builtin `sqlite3 module
`__ if you want SQLite
to be interchangeable with the other database drivers.
Use APSW when you want to use SQLite fully, and have an improved
developer experience. The `documentation
`__ has a section on
the differences between APSW and sqlite3.
Help/Documentation
==================
There is a tour and example code using APSW at
https://rogerbinns.github.io/apsw/example.html
The latest documentation is at https://rogerbinns.github.io/apsw/
Mailing lists/contacts
======================
* `Python SQLite discussion group `__
(preferred)
* You can also email the author at `rogerb@rogerbinns.com
`__
Releases and Changes
====================
Releases are made to `PyPI `__
(install using pip) and `Github
`__
New release announcements are sent to the `Python SQLite discussion
group `__ and there is
an `RSS feed from PyPI
`__.
`Full detailed list of changes `__
Bugs
====
You can find existing and fixed bugs by clicking on `Issues
`__ and using "New Issue"
to report previously unknown issues.
License
=======
See `LICENSE
`__ - in
essence any OSI approved open source license.
Older Python versions
=====================
A `release
`__
from January 2022 supports all CPython versions back to 2.3. The
`tips `__ include more
information about versions.