Skip to main content

A Python library for working with CITE architecture URNs for scholarly citation.

Project description

urn_citation

A Python library for working with CITE architecture URNs for scholarly citation.

Overview

urn_citation provides Pydantic-based models for representing and parsing Uniform Resource Names (URNs) defined for the CITE architecture. The current release supports Canonical Text Service (CTS) URNs, which are used to identify passages of canonically citable texts with hierarchical work and passage components.

Features

  • Pydantic Models: Type-safe URN representations with validation
  • CTS URN Support: Full support for parsing and creating Canonical Text Service URNs
  • Flexible Parsing: Parse CTS URN strings into structured objects
  • Optional Fields: Support for optional work, version, exemplar, and passage components

Installation

pip install urn-citation

Quick Start

Creating a CTS URN

from urn_citation import CtsUrn

# Create a CTS URN with required fields
urn = CtsUrn(
    urn_type="cts",
    namespace="greekLit",
    text_group="tlg0012"
)

# Create a CTS URN with all fields
urn_full = CtsUrn(
    urn_type="cts",
    namespace="greekLit",
    text_group="tlg0012",
    work="001",
    version="wacl1",
    exemplar="ex1",
    passage="1.1-1.5"
)

Parsing from a String

# Parse a CTS URN from a colon-delimited string
urn_string = "urn:cts:greekLit:tlg0012.001.wacl1:1.1-1.5"
urn = CtsUrn.from_string(urn_string)

print(urn.text_group)  # "tlg0012"
print(urn.work)        # "001"
print(urn.version)     # "wacl1"
print(urn.passage)     # "1.1-1.5"

Serialization

# Convert to dictionary
urn_dict = urn.model_dump()

# Convert to JSON
urn_json = urn.model_dump_json()

CTS URN Structure

A CTS URN follows the format:

urn:cts:<namespace>:<work_component>:<passage_component>

Where:

  • namespace: The namespace defining the text collection (e.g., "greekLit", "latinLit")
  • work_component: One to four dot-delimited identifiers for text group, work, version, and exemplar
  • passage_component: Optional passage reference, may contain a single passage or range (with hyphen)

License

See the LICENSE file for details.

Documentation

See API documentation for more details on the classes and methods provided by this library.

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

urn_citation-0.7.3.tar.gz (65.7 kB view details)

Uploaded Source

Built Distribution

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

urn_citation-0.7.3-py3-none-any.whl (22.4 kB view details)

Uploaded Python 3

File details

Details for the file urn_citation-0.7.3.tar.gz.

File metadata

  • Download URL: urn_citation-0.7.3.tar.gz
  • Upload date:
  • Size: 65.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for urn_citation-0.7.3.tar.gz
Algorithm Hash digest
SHA256 0b4524ee82f8fff14f903a528ceed39bcaf2429f13e80ffd72a20411e9157737
MD5 7b45e050aa4361ceb8ed4c75829228c6
BLAKE2b-256 9d9362e2dddffd01b99155ef3eb53123c724d53191e98d615e004b2e275d310d

See more details on using hashes here.

Provenance

The following attestation bundles were made for urn_citation-0.7.3.tar.gz:

Publisher: publish.yml on neelsmith/urn_citation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file urn_citation-0.7.3-py3-none-any.whl.

File metadata

  • Download URL: urn_citation-0.7.3-py3-none-any.whl
  • Upload date:
  • Size: 22.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for urn_citation-0.7.3-py3-none-any.whl
Algorithm Hash digest
SHA256 8ea93a596569e9888064992f44dc5c84af8bd0dbf8bc6604f8d34f9b196c960c
MD5 91bd3ac1fb98b8118c88ad8009d473ae
BLAKE2b-256 40603121ea0909cc8adcc4e5c2d181871423dbf957df3ff877497e7feb5cfcd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for urn_citation-0.7.3-py3-none-any.whl:

Publisher: publish.yml on neelsmith/urn_citation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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