Skip to content

zopefoundation/ZODB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

783610f · Oct 30, 2024
Mar 30, 2024
Jul 17, 2024
Oct 30, 2024
Oct 29, 2021
Nov 8, 2022
Mar 30, 2024
Oct 9, 2023
Mar 2, 2012
Oct 30, 2024
Mar 18, 2022
Jun 2, 2004
Jun 21, 2010
Mar 17, 2020
Mar 26, 2020
Jun 21, 2010
Oct 3, 2023
Nov 21, 2023
Apr 20, 2021
Mar 30, 2024
Jul 29, 2024
Mar 30, 2024

Repository files navigation

ZODB, a Python object-oriented database

Latest release Supported Python versions Build status Coverage status Documentation status

ZODB provides an object-oriented database for Python that provides a high-degree of transparency. ZODB runs on Python 3.7 and above. It also runs on PyPy.

  • no separate language for database operations

  • very little impact on your code to make objects persistent

  • no database mapper that partially hides the database.

    Using an object-relational mapping is not like using an object-oriented database.

  • almost no seam between code and database.

ZODB is an ACID Transactional database.

To learn more, visit: https://zodb-docs.readthedocs.io

The github repository is at https://github.com/zopefoundation/zodb

If you're interested in contributing to ZODB itself, see the developer notes.