Skip to main content

Client interface to sentier.dev sustainability assessment glossary

Project description

sentier_glossary

PyPI Status Python Version License

Read the documentation at https://sentier_glossary.readthedocs.io/ Tests Codecov

pre-commit Black

Installation

You can install sentier_glossary via [pip] from [PyPI]:

$ pip install sentier_glossary

Usage

There is a single class, GlossaryAPI, which wraps the Sentier glossary API endpoints:

from sentier_glossary import GlossaryAPI, CommonSchemes
api = GlossaryAPI()

With this class, you can retrieve the collections (logical organization of concept schemes into products, processes, places, and units), concept schemes, and concepts. For example:

> api.schemes()
[{'iri': 'http://data.europa.eu/z1e/icstcom2009/icst',
  'notation': 'ICST-COM 2009',
  'prefLabel': 'International Classification of Ship by Type (ICST-COM)',
  'scopeNote': ''},
...]
> [
>    concept
>    for concept in api.concepts_for_scheme('http://data.europa.eu/z1e/icstcom2009/icst')
>    if 'passenger' in concept['prefLabel'].lower()
> ]
[{'iri': 'http://data.europa.eu/z1e/icstcom2009/35',
  'identifier': '35',
  'notation': '35',
  'prefLabel': '35 Passenger ship',
  'altLabel': 'Passenger ship',
  'scopeNote': 'Ship categories included: passengers (excluding cruise passengers)...'},
 {'iri': 'http://data.europa.eu/z1e/icstcom2009/36',
  'identifier': '36',
  'notation': '36',
  'prefLabel': '36 Cruise Passenger',
  'altLabel': 'Cruise Passenger',
  'scopeNote': 'Ship categories included: cruise ships only '}]
> api.concept('http://data.europa.eu/z1e/icstcom2009/35')
{'iri': 'http://data.europa.eu/z1e/icstcom2009/35',
 'notation': '35',
 'prefLabel': '35 Passenger ship',
 'identifier': '35',
 'scopeNote': 'Ship categories included: passengers (excluding cruise passengers)...',
 'altLabel': 'Passenger ship',
 'concept_schemes': ['http://data.europa.eu/z1e/icstcom2009/icst'],
 'relations': []}

The Sentier glossary uses vocabularies built on SKOS, and uses SKOS terms like prefLabel, altLabel, broader, narrower, and scopeNote.

Language of Results

The results returned from the API will depend on your language preferences. By default, the glossary client uses the default language in your locale. You can change it when instantiating the API:

api = GlossaryAPI(language_code="fr")

Language codes follow ISO 639-1, and are two lowercase letters, e.g. en, es, and zh.

You can also use set_language_code() to change the language of an existing GlossaryAPI client. For example:

> api.set_language_code('fr')
> api.concept('http://data.europa.eu/z1e/icstcom2009/35')
{'iri': 'http://data.europa.eu/z1e/icstcom2009/35',
 'notation': '35',
 'prefLabel': '35 Passagers',
 'identifier': '35',
 'scopeNote': 'Catégories incluses dans chaque type de navire: Passagers (sauf passagers de navires de croisière)',
 'altLabel': 'Passagers',
 'concept_schemes': ['http://data.europa.eu/z1e/icstcom2009/icst'],
 'relations': []}

The default fallback language of the glossary is en.

Semantic Search

The API search endpoint is under revision; for the time being we can use local semantic search. This only works with concept schemes given in CommonSchemes, currently:

To make a search query, pass the search query and the concept scheme. For example:

> api.semantic_search("piggies", CommonSchemes.cn2024)
[[{'iri': 'http://data.europa.eu/xsp/cn2024/080291000080',
   'identifier': '080291000080',
   'notation': '0802 91 00',
   'prefLabel': '0802 91 00 -- Pignons, en coques',
   'altLabel': '-- Pignons, en coques',
   'scopeNote': 'Pignons, frais ou secs, en coques'}],
...]

The first time you run this it might take a while as it downloads the data needed for semantic search, and vectorizes the API vocabularies.

Contributing

Contributions are very welcome. To learn more, see the Contributor Guide.

License

Distributed under the terms of the MIT license, sentier_glossary is free and open source software.

Issues

If you encounter any problems, please file an issue along with a detailed description.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sentier_glossary-0.4.1.tar.gz (8.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sentier_glossary-0.4.1-py3-none-any.whl (8.1 kB view details)

Uploaded Python 3

File details

Details for the file sentier_glossary-0.4.1.tar.gz.

File metadata

  • Download URL: sentier_glossary-0.4.1.tar.gz
  • Upload date:
  • Size: 8.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for sentier_glossary-0.4.1.tar.gz
Algorithm Hash digest
SHA256 7e492413fecc176ea9dfc21bc459f960213309885e8802aaa208a58c407e74cb
MD5 31c79933966cc613b0b4f20248e1aac1
BLAKE2b-256 6c9e377d6b5d8248b18e2c39269813e28748b8c0e53cffe7cf6fe6477f3cb21a

See more details on using hashes here.

File details

Details for the file sentier_glossary-0.4.1-py3-none-any.whl.

File metadata

File hashes

Hashes for sentier_glossary-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d7c252bc37e279049849dbc1017e7a2250c35205706058f75e69548a4f33bf90
MD5 f98877ead888eb08015dc72635877508
BLAKE2b-256 7f6ac6705dc583999a83f7316f37e46a20494e739e3cd8afbaf53b4ad1f9777f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page