clld


Nameclld JSON
Version 11.1.0 PyPI version JSON
download
home_pagehttps://clld.org
SummaryPython library supporting the development of cross-linguistic databases
upload_time2023-12-01 16:23:50
maintainer
docs_urlNone
authorRobert Forkel
requires_python>=3.8
licenseApache 2.0
keywords web pyramid lrl linguistics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # clld

The `clld` toolkit - a web framework for the publication of
[Cross-Linguistic Linked Data](https://clld.org).

Documentation for the code base and its use is available at https://clld.readthedocs.io/en/latest/.
The source for this documentation is in the `docs` directory.

[![Build Status](https://github.com/clld/clld/workflows/tests/badge.svg)](https://github.com/clld/clld/actions?query=workflow%3Atests)
[![PyPI](https://img.shields.io/pypi/v/clld.svg)](https://pypi.python.org/pypi/clld)
[![Documentation Status](http://readthedocs.org/projects/clld/badge/?version=latest)](http://clld.readthedocs.io/en/latest/?badge=latest)


## Usage

Once the initial steps (installation, bootstrapping a new project)
have been done helped by [the online documentation](https://clld.readthedocs.io/en/latest/),
the biggest resource to guide further development of a `clld` app
is the [wealth of existing apps](https://github.com/clld/clld/network/dependents).
(Note: GitHub's "Used by" links - created from the dependency graph data - are really
helpful here!)
The following pointers are meant as a
starting point to solve specific problems by perusing the code of other
apps.

- **Integrating language metadata from Glottolog**: There's 
  [a plugin](https://github.com/clld/clld-glottologfamily-plugin) for that
  and here's the list of apps on GitHub using it: https://github.com/clld/clld-glottologfamily-plugin/network/dependents
- **Displaying (data on) phylogenetic laguage trees**: There's
  [a plugin](https://github.com/clld/clld-phylogeny-plugin) for that
  and here's the list of apps on GitHub using it: https://github.com/clld/clld-phylogeny-plugin/network/dependents
- **Displaying cognacy relations between words**: There's
  [a plugin](https://github.com/clld/clld-cognacy-plugin) for that
  and here's the list of apps on GitHub using it: https://github.com/clld/clld-cognacy-plugin/network/dependents
- **Displaying phoneme inventories as IPA charts**: There's
  [a plugin](https://github.com/clld/clld-ipachart-plugin) for that
  and here's the list of apps on GitHub using it: https://github.com/clld/clld-ipachart-plugin/network/dependents
- **Integrating audio recordings of lexical data**: There's
  [a plugin](https://github.com/clld/clld-audio-plugin) for that
  and here's the list of apps on GitHub using it: https://github.com/clld/clld-audio-plugin/network/dependents
- **Aggregating data from multiple CLDF datasets**: The app serving the
  [Intercontinental Dictionary Series](https://ids.clld.org) does this.
  Very simple per-dataset metadata of the form
  ```json
  {
    "id": "ids-cosgrovevoro",
    "repo": "https://github.com/intercontinental-dictionary-series/cosgrovevoro",
    "doi": "10.5281/zenodo.4280576",
    "order": 2
  }
  ```
  is read and used to populate the database, see
  https://github.com/clld/ids/blob/master/ids/scripts/initializedb.py#L38-L67
- **Aggregating data from different CLDF modules**: While most `clld` apps are
  concerned with just one type of data (e.g. typological questionnaires as in WALS,
  or wordlists as in IDS), some have a different focus (e.g.
  [TuLaR (TupĂ­an Language Resources)](https://tular.clld.org)). The TuLaR
  app aggregates data which is curated in several datasets, bundled under
  a [Zenodo community](https://zenodo.org/communities/tular), see https://github.com/tupian-language-resources/tular/blob/main/tular/scripts/initializedb.py
- **Using Charis SIL fonts**: using [SIL's Charis fonts](https://software.sil.org/charis/) on a `clld` page is simple. Here's an example
  https://ids.clld.org/valuesets/1-100-316
  - Include the relevant style sheet (which will pull in the font resources):
    https://github.com/clld/ids/blob/b2884e06a53a0a3c7a0dc27955c314869d0a31aa/ids/templates/ids.mako#L10-L12
  - Then assign the appropriate css class:
    https://github.com/clld/ids/blob/b2884e06a53a0a3c7a0dc27955c314869d0a31aa/ids/templates/unit/detail_html.mako#L6


## See

- The [CLLD project](https://clld.org)
- [Online documentation](https://clld.readthedocs.io/en/latest/)
- [Presentation on clld from 2014](https://clld.org/docs/reflex/clld.pdf)

            

Raw data

            {
    "_id": null,
    "home_page": "https://clld.org",
    "name": "clld",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "web pyramid LRL Linguistics",
    "author": "Robert Forkel",
    "author_email": "robert_forkel@eva.mpg.de",
    "download_url": "https://files.pythonhosted.org/packages/2c/d8/d8993ea8a4a92e22c501a8b5d9cc2b99c6d8c45d93b43482d90f0643488d/clld-11.1.0.tar.gz",
    "platform": null,
    "description": "# clld\n\nThe `clld` toolkit - a web framework for the publication of\n[Cross-Linguistic Linked Data](https://clld.org).\n\nDocumentation for the code base and its use is available at https://clld.readthedocs.io/en/latest/.\nThe source for this documentation is in the `docs` directory.\n\n[![Build Status](https://github.com/clld/clld/workflows/tests/badge.svg)](https://github.com/clld/clld/actions?query=workflow%3Atests)\n[![PyPI](https://img.shields.io/pypi/v/clld.svg)](https://pypi.python.org/pypi/clld)\n[![Documentation Status](http://readthedocs.org/projects/clld/badge/?version=latest)](http://clld.readthedocs.io/en/latest/?badge=latest)\n\n\n## Usage\n\nOnce the initial steps (installation, bootstrapping a new project)\nhave been done helped by [the online documentation](https://clld.readthedocs.io/en/latest/),\nthe biggest resource to guide further development of a `clld` app\nis the [wealth of existing apps](https://github.com/clld/clld/network/dependents).\n(Note: GitHub's \"Used by\" links - created from the dependency graph data - are really\nhelpful here!)\nThe following pointers are meant as a\nstarting point to solve specific problems by perusing the code of other\napps.\n\n- **Integrating language metadata from Glottolog**: There's \n  [a plugin](https://github.com/clld/clld-glottologfamily-plugin) for that\n  and here's the list of apps on GitHub using it: https://github.com/clld/clld-glottologfamily-plugin/network/dependents\n- **Displaying (data on) phylogenetic laguage trees**: There's\n  [a plugin](https://github.com/clld/clld-phylogeny-plugin) for that\n  and here's the list of apps on GitHub using it: https://github.com/clld/clld-phylogeny-plugin/network/dependents\n- **Displaying cognacy relations between words**: There's\n  [a plugin](https://github.com/clld/clld-cognacy-plugin) for that\n  and here's the list of apps on GitHub using it: https://github.com/clld/clld-cognacy-plugin/network/dependents\n- **Displaying phoneme inventories as IPA charts**: There's\n  [a plugin](https://github.com/clld/clld-ipachart-plugin) for that\n  and here's the list of apps on GitHub using it: https://github.com/clld/clld-ipachart-plugin/network/dependents\n- **Integrating audio recordings of lexical data**: There's\n  [a plugin](https://github.com/clld/clld-audio-plugin) for that\n  and here's the list of apps on GitHub using it: https://github.com/clld/clld-audio-plugin/network/dependents\n- **Aggregating data from multiple CLDF datasets**: The app serving the\n  [Intercontinental Dictionary Series](https://ids.clld.org) does this.\n  Very simple per-dataset metadata of the form\n  ```json\n  {\n    \"id\": \"ids-cosgrovevoro\",\n    \"repo\": \"https://github.com/intercontinental-dictionary-series/cosgrovevoro\",\n    \"doi\": \"10.5281/zenodo.4280576\",\n    \"order\": 2\n  }\n  ```\n  is read and used to populate the database, see\n  https://github.com/clld/ids/blob/master/ids/scripts/initializedb.py#L38-L67\n- **Aggregating data from different CLDF modules**: While most `clld` apps are\n  concerned with just one type of data (e.g. typological questionnaires as in WALS,\n  or wordlists as in IDS), some have a different focus (e.g.\n  [TuLaR (Tup\u00edan Language Resources)](https://tular.clld.org)). The TuLaR\n  app aggregates data which is curated in several datasets, bundled under\n  a [Zenodo community](https://zenodo.org/communities/tular), see https://github.com/tupian-language-resources/tular/blob/main/tular/scripts/initializedb.py\n- **Using Charis SIL fonts**: using [SIL's Charis fonts](https://software.sil.org/charis/) on a `clld` page is simple. Here's an example\n  https://ids.clld.org/valuesets/1-100-316\n  - Include the relevant style sheet (which will pull in the font resources):\n    https://github.com/clld/ids/blob/b2884e06a53a0a3c7a0dc27955c314869d0a31aa/ids/templates/ids.mako#L10-L12\n  - Then assign the appropriate css class:\n    https://github.com/clld/ids/blob/b2884e06a53a0a3c7a0dc27955c314869d0a31aa/ids/templates/unit/detail_html.mako#L6\n\n\n## See\n\n- The [CLLD project](https://clld.org)\n- [Online documentation](https://clld.readthedocs.io/en/latest/)\n- [Presentation on clld from 2014](https://clld.org/docs/reflex/clld.pdf)\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "Python library supporting the development of cross-linguistic databases",
    "version": "11.1.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/clld/clld/issues",
        "Homepage": "https://clld.org",
        "Source": "https://github.com/clld/clld"
    },
    "split_keywords": [
        "web",
        "pyramid",
        "lrl",
        "linguistics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9fc51ccd6a22101738505d247b4166080438270fb5f73e14f2621f51dd91dc6f",
                "md5": "9a48fcc12a068a6106d472913ed360f0",
                "sha256": "af0563d99eee76cc46fa2074924dc44c4536a1d0e308d6efc06abe9172f17796"
            },
            "downloads": -1,
            "filename": "clld-11.1.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9a48fcc12a068a6106d472913ed360f0",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.8",
            "size": 8623106,
            "upload_time": "2023-12-01T16:22:55",
            "upload_time_iso_8601": "2023-12-01T16:22:55.639462Z",
            "url": "https://files.pythonhosted.org/packages/9f/c5/1ccd6a22101738505d247b4166080438270fb5f73e14f2621f51dd91dc6f/clld-11.1.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2cd8d8993ea8a4a92e22c501a8b5d9cc2b99c6d8c45d93b43482d90f0643488d",
                "md5": "4fd2499dc61211a7ed7e0952ad10945c",
                "sha256": "85a7d3af42c5475bf9b587b1f1285d0e3e0972a916f44afce668527f5d8a5da6"
            },
            "downloads": -1,
            "filename": "clld-11.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "4fd2499dc61211a7ed7e0952ad10945c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 8549209,
            "upload_time": "2023-12-01T16:23:50",
            "upload_time_iso_8601": "2023-12-01T16:23:50.919689Z",
            "url": "https://files.pythonhosted.org/packages/2c/d8/d8993ea8a4a92e22c501a8b5d9cc2b99c6d8c45d93b43482d90f0643488d/clld-11.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-01 16:23:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "clld",
    "github_project": "clld",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "clld"
}
        
Elapsed time: 0.16645s