Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/onroerenderfgoed/skosprovider_sqlalchemy
An implementation of the skosprovider interface against SQLAlchemy.
https://github.com/onroerenderfgoed/skosprovider_sqlalchemy
Last synced: about 5 hours ago
JSON representation
An implementation of the skosprovider interface against SQLAlchemy.
- Host: GitHub
- URL: https://github.com/onroerenderfgoed/skosprovider_sqlalchemy
- Owner: OnroerendErfgoed
- License: mit
- Created: 2013-10-07T20:40:35.000Z (about 11 years ago)
- Default Branch: develop
- Last Pushed: 2024-09-19T13:10:18.000Z (2 months ago)
- Last Synced: 2024-11-13T16:13:07.570Z (5 days ago)
- Language: Python
- Homepage: http://skosprovider-sqlalchemy.readthedocs.org/en/latest/
- Size: 435 KB
- Stars: 2
- Watchers: 7
- Forks: 7
- Open Issues: 5
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- License: LICENSE
- Citation: CITATION.cff
Awesome Lists containing this project
README
skosprovider_sqlalchemy
=======================A SQLAlchemy implementation of the skosprovider_ interface.
.. image:: https://img.shields.io/pypi/v/skosprovider_sqlalchemy.svg
:target: https://pypi.python.org/pypi/skosprovider_sqlalchemy
.. image:: https://readthedocs.org/projects/skosprovider_sqlalchemy/badge/?version=latest
:target: https://readthedocs.org/projects/skosprovider_sqlalchemy/?badge=latest.. image:: https://app.travis-ci.com/OnroerendErfgoed/skosprovider_sqlalchemy.svg?branch=develop
:target: https://app.travis-ci.com/OnroerendErfgoed/skosprovider_sqlalchemy
.. image:: https://img.shields.io/coveralls/OnroerendErfgoed/skosprovider_sqlalchemy.svg
:target: https://coveralls.io/r/OnroerendErfgoed/skosprovider_sqlalchemy
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.5795912.svg
:target: https://doi.org/10.5281/zenodo.5795912Migrating to skosprovider_sqlalchemy 2.0.0
------------------------------------------
A change in the models has been made which requires a database upgrade.
The "concept" table's "concept_id" column has changed from being an int to a string.Existing databases will therefor require a small change to update table scheme.
Typically this will look like::ALTER TABLE concept ALTER COLUMN concept_id TEXT NOT NULL;
Building the docs
-----------------More information about this library can be found in `docs`. The docs can be
built using `Sphinx `_.Please make sure you have installed Sphinx in the same environment where
skosprovider_sqlalchemy is present... code-block:: bash
# activate your virtual env
$ pip install -r requirements-dev.txt
$ cd docs
$ make html.. _skosprovider: https://github.com/koenedaele/skosprovider