Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/okfn/vdm
Versioned domain model. Python library for revisioning/versioning of databases.
https://github.com/okfn/vdm
Last synced: 5 days ago
JSON representation
Versioned domain model. Python library for revisioning/versioning of databases.
- Host: GitHub
- URL: https://github.com/okfn/vdm
- Owner: okfn
- Created: 2011-12-01T11:33:44.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2021-01-12T18:58:06.000Z (almost 4 years ago)
- Last Synced: 2024-09-19T16:35:09.215Z (about 2 months ago)
- Language: Python
- Homepage: http://packages.python.org/vdm/
- Size: 290 KB
- Stars: 44
- Watchers: 18
- Forks: 9
- Open Issues: 6
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.txt
Awesome Lists containing this project
- awesome-starred - okfn/vdm - Versioned domain model. Python library for revisioning/versioning of databases. (others)
README
.. image:: https://travis-ci.org/okfn/vdm.svg?branch=master
:target: https://travis-ci.org/okfn/vdmTo install do::
$ easy_install vdm
Or checkout from our git repository::
$ git clone https://github.com/okfn/vdm
For more information see the main package docstring. To view this either just
open vdm/__init__.py or do (after installation)::$ pydoc vdm
For Developers
==============Tests currently pass against postgres or sqlite (see 'TEST_ENGINE' setting
in vdm/sqlalchemy/demo.py).To run tests with postgres you will need to have a set up a postgresql
database with user 'tester' and password 'pass' (see settings in
vdm/sqlalchemy/demo.py).Run the tests using nosetests::
$ nosetests vdm/sqlalchemy