• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

django_hierarkey.egg-info/H03-May-2022-5543

hierarkey/H09-Jul-2017-508405

PKG-INFOH A D09-Jul-20172.5 KiB5543

README.rstH A D08-Apr-20171.5 KiB3524

setup.cfgH A D09-Jul-2017401 2117

setup.pyH A D09-Apr-20171.4 KiB4940

README.rst

1django-hierarkey -- Hierarchical key-value store
2================================================
3
4.. image:: https://img.shields.io/pypi/v/django-hierarkey.svg
5   :target: https://pypi.python.org/pypi/django-hierarkey
6
7.. image:: https://readthedocs.org/projects/django-hierarkey/badge/?version=latest
8   :target: https://django-hierarkey.readthedocs.io/
9
10.. image:: https://travis-ci.org/raphaelm/django-hierarkey.svg?branch=master
11   :target: https://travis-ci.org/raphaelm/django-hierarkey
12
13.. image:: https://codecov.io/gh/raphaelm/django-hierarkey/branch/master/graph/badge.svg
14   :target: https://codecov.io/gh/raphaelm/django-hierarkey
15
16This package allows you to attach a key-value store to a model, e.g. to store preferences of
17an user or a customer. The package supports arbitrary datatypes, defaults and model hierarchies,
18i.e. you can define a different model instance as your instance's parent and the values of the
19parent instance will be used as default values for the child instances.
20
21This approach has been in use in `pretix`_ for quite a while, so it has been tested in
22production.
23
24Tested with Python 3.4-3.6 and Django 1.9-1.11.
25
26License
27-------
28The code in this repository is published under the terms of the Apache License.
29See the LICENSE file for the complete license text.
30
31This project is maintained by Raphael Michel <mail@raphaelmichel.de>. See the
32AUTHORS file for a list of all the awesome folks who contributed to this project.
33
34.. _pretix: https://github.com/pretix/pretix
35