Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zopefoundation/ZODB
Python object-oriented database
https://github.com/zopefoundation/ZODB
database hacktoberfest maintained python
Last synced: 3 days ago
JSON representation
Python object-oriented database
- Host: GitHub
- URL: https://github.com/zopefoundation/ZODB
- Owner: zopefoundation
- License: other
- Created: 2012-12-28T17:47:39.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2024-10-23T02:40:58.000Z (12 days ago)
- Last Synced: 2024-10-23T03:58:28.327Z (12 days ago)
- Topics: database, hacktoberfest, maintained, python
- Language: Python
- Homepage: https://zodb-docs.readthedocs.io/
- Size: 23.6 MB
- Stars: 680
- Watchers: 99
- Forks: 92
- Open Issues: 71
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- Contributing: CONTRIBUTING.md
- License: COPYING
Awesome Lists containing this project
- awesome-distributed-system-projects - ZODB - an ACID transactional object-oriented database
- awesome-python-resources - GitHub - 38% open · ⏱️ 06.07.2022): (数据库)
- awesome-rainmana - zopefoundation/ZODB - Python object-oriented database (Python)
- starred-awesome - ZODB - Python object-oriented database (Python)
README
=======================================
ZODB, a Python object-oriented database
=======================================.. image:: https://img.shields.io/pypi/v/ZODB.svg
:target: https://pypi.org/project/ZODB/
:alt: Latest release.. image:: https://img.shields.io/pypi/pyversions/ZODB.svg
:target: https://pypi.org/project/ZODB/
:alt: Supported Python versions.. image:: https://github.com/zopefoundation/ZODB/actions/workflows/tests.yml/badge.svg
:target: https://github.com/zopefoundation/ZODB/actions/workflows/tests.yml
:alt: Build status.. image:: https://coveralls.io/repos/github/zopefoundation/ZODB/badge.svg
:target: https://coveralls.io/github/zopefoundation/ZODB
:alt: Coverage status.. image:: https://readthedocs.org/projects/zodb-docs/badge/?version=latest
:target: https://zodb-docs.readthedocs.io/en/latest/
:alt: Documentation statusZODB 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
`_.