معرفی شرکت ها


django-controlled-vocabulary-0.9


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Link your data to authority lists or your own controlled lists
ویژگی مقدار
سیستم عامل -
نام فایل django-controlled-vocabulary-0.9
نام django-controlled-vocabulary
نسخه کتابخانه 0.9
نگهدارنده []
ایمیل نگهدارنده []
نویسنده geoffroy-noel-ddh
ایمیل نویسنده geoffroy.noel@kcl.ac.uk
آدرس صفحه اصلی https://github.com/kingsdigitallab/django-controlled-vocabulary
آدرس اینترنتی https://pypi.org/project/django-controlled-vocabulary/
مجوز MIT
[![PyPI version](https://badge.fury.io/py/django-controlled-vocabulary.svg)](https://badge.fury.io/py/django-controlled-vocabulary) [![Build Status](https://travis-ci.org/kingsdigitallab/django-controlled-vocabulary.svg?branch=master)](https://travis-ci.org/kingsdigitallab/django-controlled-vocabulary) [Advanced topics (Wiki)](https://github.com/kingsdigitallab/django-controlled-vocabulary/wiki) # Django Controlled Vocabulary This app provides models and admin interface to link your data to standard vocabularies (e.g. ISO language codes, Wikidata). Benefits: increases the consistency and understandability of your project data. Requirements: Python 3.5+, Django 2.2+ Development Status: **Beta** <img src="docs/img/controlled-term-widget.png" /> _A ControlledTerm field in the Django admin interface. The user selects the vocabulary (here: Wikidata), then starts typing a term in the text box. Suggestions are brought from Wikidata. When the user saves the changes, information about the selected term is copied into the database (url, identifier, label)._ # Features * create your own controlled lists of terms (i.e. a **local** lists, project-specific) * look up terms from **standard vocabularies** (i.e. **authority files** maintained by other organisations) * extensible **plug-in architecture** for lookups into particular vocabularies (see table below for built-in plugins) * **stores** used terms from remote vocabularies into your database: * space efficient (doesn't clutter the database with unused terms) * self-contained (i.e. can still works offline & DB always 'semantically' complete) * **autocomplete** widget for Django admin; reusable ControlledTermField for your models * **command line tool** to download vocabulary files from authoritative sources * [TODO] possibility to store additional **metadata** (e.g. geographic coordinates) * [TODO] simple **rest API** to publish your own terms ## Standard vocabularies included Built-in plugins for the following authority files: | Vocabulary | Description | | ------------- | ------------- | | [Schema.org](https://schema.org/) | High-level categories of content | | [Wikidata](https://www.wikidata.org) | High level concepts or specific instances (e.g. places, people) | | [ISO 639-2](http://id.loc.gov/vocabulary/iso639-2.html) | Language codes | | [DCMI Type](https://www.dublincore.org/specifications/dublin-core/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary) | Dublin Core Format Type | | [MIME](https://www.iana.org/assignments/media-types/media-types.xhtml) | Media/File types | | [FAST Topics](https://www.oclc.org/research/themes/data-science/fast.html) | Topic categorisation | | [FAST Forms and Genres](https://www.oclc.org/research/themes/data-science/fast.html) | Genres of a piece of work | | [VIAF](https://www.oclc.org/en/viaf.html) | Various: regions, people, companies, ... | # Data Model & Software Design ## Django models | Vocabularies | Terms | | ------------- | ------------- | | <img src="docs/img/controlled-vocabulary-list.png" width="400" /> | <img src="docs/img/controlled-term-list.png" width="400" /> | * **ControlledVocabulary** * prefix: the vocabulary standard prefix, see http://prefix.cc/wikidata * label: the short name of the vocabulary * base_url: the url used as a base for all terms in the vocabulary * concept: the type of terms this vocabulary represents (e.g. language, people) * description: a longer description * **ControlledTerm** * termid: a unique code for the term within a vocabulary, it is case sensitive * label: standard name for the term, as provided by the authority * vocabulary: a reference to the ControlledVocabulary this term belongs to Conventions: * joining base_url (e.g. http://schema.org) with termid (e.g. Movie) **must** give the exact standard/canonical URI for the term, e.g. http://schema.org/Movie ## Vocabulary plug-ins / managers A Vocabulary **plug-in** / **manager** is a python class that provides services for a vocabulary: * autocomplete terms from local or remote datasets (see ControlledTermField) * supplies metadata for the vocabulary (see ControlledVocabulary) Managers can provide terms from a CSV file downloaded from an authoritative source. Some vocabularies can contain thousands of terms or more. A plugin will only insert the terms used by your application. The rest will be accessed on demand from a file on disk or in a third-party server. This approach saves database space and keeps your application data self-contained. This project comes with built-in plugins such a Wikidata or Schema.org. Those plugins are **enabled** by default; see below how to selectively enable them. This architecture allows third-party plugins to be supplied via separate python packages. # Limitations * **controlled list** rather than fully fledged vocabularies, (i.e. just a bag of terms with unique IDs/URIs, no support for taxonomic relationships among terms like broader, narrower, synonyms, ...) * no notion of granularity (e.g. geonames country, region, city, street are all treated as part of the same vocabulary) # Setup ## Installation Install into your environment: ```Shell pip install django-controlled-vocabulary ``` Add the app to the INSTALLED_APPS list in your Django settings file: ```Python INSTALLED_APPS = [ ... 'controlled_vocabulary', ... ] ``` Add the following path to your project urls.py: ```Python from django.urls import path, include ... urlpatterns = [ ... path('vocabularies/', include('controlled_vocabulary.urls')), ... ] ``` Run the migrations: ```Shell ./manage.py migrate ``` Download vocabulary data and add metadata to the database: ```Shell ./manage.py vocab init ``` ## Configuration ### Enabling specific vocabulary plug-ins (optional) Currently all built-in plugins / managers are enabled by default. Add the following code in your settings.py to enable **only** specific vocabularies based on the import path of their classes. You can also use this to enable your own or third-party plugins. ```Python # List of import paths to vocabularies lookup classes CONTROLLED_VOCABULARY_VOCABULARIES = [ 'controlled_vocabulary.vocabularies.iso639_2', 'controlled_vocabulary.vocabularies.dcmitype', ] ``` After enabling a new plug-in / manager, always run `./manage.py vocab init`. ### ControlledTerm(s)Field Use the **ControlledTermField** field to define a field with an **autocomplete** to controlled terms in your Django Model: ```Python from controlled_vocabulary.models import ControlledTermField ... class MyModel(models.Model): ... language_code = ControlledTermField( 'iso639-2', null=True, blank=True ) ``` Where `iso639-2` is the prefix of a controlled vocabulary in your database. ControlledTermField is essentially syntactic sugar for a [ForeignKeyField](https://docs.djangoproject.com/en/3.0/ref/models/fields/#django.db.models.ForeignKey) with an adapted [Select](https://docs.djangoproject.com/en/3.0/ref/forms/widgets/#select) widget. For multiple values, you can use **ControlledTermsField** (note the '*s*' in the name), which inherits from ManyToManyField with an adapted SelectMultiple widget. The useage is identical but obviously `null=True` should be omitted. By default the widget proposes the given vocabulary to the end user, but they can use the dropdown to switch to any other available vocabulary (see screenshot at the top of this page). To **lock** the selection to a single vocabulary, use this expression instead: ```Python language_code = ControlledTermField( ['iso639-2'], null=True, blank=True ) ``` You can have more than one prefix in that list if you want. The first item is always the one proposed by default on page load. # vocab (command line tool) vocab is a django command line tool that lets you manipulate the vocabularies and the plugins. To find out more use the help: ```Shell ./manage vocab help ```


نیازمندی

مقدار نام
>=2.2,<3.3 django
>=1.25,<2.0 urllib3
>=3.0,<4.0) tox
>=4.5,<5.0) coverage


زبان مورد نیاز

مقدار نام
>=3.5,<4.0 Python


نحوه نصب


نصب پکیج whl django-controlled-vocabulary-0.9:

    pip install django-controlled-vocabulary-0.9.whl


نصب پکیج tar.gz django-controlled-vocabulary-0.9:

    pip install django-controlled-vocabulary-0.9.tar.gz