Skip to content
Python object-oriented database
Python
Branch: master
Clone or download

Latest commit

Latest commit 0e343a8 Mar 6, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
doc
src/ZODB Fix test compatibility with persistent 4.6; test CPython with PURE_PY… Mar 5, 2020
.coveragerc Bound the amount of time we wait for the client thread to exit. May 9, 2019
.gitignore Try to make releaser less unhappy Feb 9, 2017
.travis.yml Fix test compatibility with persistent 4.6; test CPython with PURE_PY… Mar 5, 2020
3.11.txt *** empty log message *** Mar 2, 2012
CHANGES.rst mvccadapter: fix race with invalidations when starting a new transact… Jan 23, 2020
COPYING Updated license to version 2.1. Jun 2, 2004
COPYRIGHT.txt
DEVELOPERS.rst be ReST pedantic Apr 8, 2017
HISTORY.rst Merge HISTORY.txt into HISTORY.rst Apr 8, 2017
LICENSE.txt Comply with repository policy. Jun 21, 2010
MANIFEST.in Exclude some development files Apr 11, 2017
README.rst
appveyor.yml Evidently the build_script is required. Mar 5, 2020
bootstrap.py Update to latest bootstrap. Dec 22, 2014
buildout.cfg Try to install a python-version-appropriate Sphinx version. May 7, 2019
log.ini default logging configuration for testing Apr 13, 2004
release.py
setup.cfg Drop support for Python 3.3 Jul 24, 2017
setup.py Add support for Python 3.8. (#286) Nov 21, 2019
tox.ini Fix test compatibility with persistent 4.6; test CPython with PURE_PY… Mar 5, 2020

README.rst

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 2.7 or Python 3.4 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: http://www.zodb.org

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

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

You can’t perform that action at this time.