Cltk

Latest version: v1.4.0

Safety actively analyzes 707283 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 13

1.3.0

Installation
Install the new release with `pip install cltk==1.3.0`.

Changes
* Added odyCy model to process Ancient Greek texts.
* [OdyCy on spaCy](https://spacy.io/universe/project/odycy)
* [Hugging Face's model card](https://huggingface.co/chcaa/grc_odycy_joint_trf)
* [OdyCy's paper](https://aclanthology.org/2023.latechclfl-1.14/)

OdyCy code example:
python
from cltk.languages.example_texts import get_example_text
spacy_wrapper: SpacyWrapper = SpacyWrapper(language="grc")
greek_spacy_doc: SpacyDoc = spacy_wrapper.parse(get_example_text("grc"))
for token in greek_spacy_doc.doc:
print(token.orth_, token.lemma_,token.is_stop, token.pos_, token.morph, token.dep_, token.head)

1.2.6

Installation
Install the new release with `pip install cltk==1.2.6`.

Changes
* Can pickling Doc (Fix 1250, clemsciences in https://github.com/cltk/cltk/pull/1257)

1.2.5

Installation
Install the new release with `pip install cltk==1.2.5`.

Changes
* Comment out the rm of special characters (kylepjohnson in https://github.com/cltk/cltk/pull/1254).
* Add version restriction for `scipy` to work around `gensim` issue. (nkprasad12 in https://github.com/cltk/cltk/pull/1255),
* Re-enable removal of fancy quotes (kylepjohnson in https://github.com/cltk/cltk/pull/1256).


[See full changelog here](https://github.com/cltk/cltk/compare/v1.2.2...v1.2.5)

1.2.2

Installation
Install the new release with `pip install cltk==1.2.2`.

Changes
* Update precommit configuration (kylepjohnson in https://github.com/cltk/cltk/pull/1241),
* Add typing in all code (kylepjohnson in https://github.com/cltk/cltk/pull/1242),
* Scansion adjustment for Ancient Greek 1246 (SDCLA in https://github.com/cltk/cltk/pull/1252),

New Contributors
* First contribution for SDCLA made in https://github.com/cltk/cltk/pull/1252

[See full changelog here](https://github.com/cltk/cltk/compare/v1.2.1...v1.2.2).

1.2.1

Installation
Install the new release with `pip install cltk==1.2.1`.

Changes
* Updated mypy.
* Improved printing of CLTK version.

1.2.0

Installation
Install the new release with `pip install cltk==1.2.0`.

Changes
* Updated spaCy to version 3.7.2.
* Added a spaCy wrapper 1195 1239. A spaCy model can be used to parse a text and the data can be translated from a spaCy's `Doc` to a list of CLTK's `Word`.
* LatinCy has been integrated to CLTK as the first spaCy model. This is the default model for spaCy model in Latin 1239.
* **Breaking change** Renamed two files that lead to wrong imports:
* Before: `from cltk.dependency.stanza import StanzaWrapper`
* After: `from cltk.dependency.stanza_wrapper import StanzaWrapper`, `from cltk.dependency.spacy_wrapper import SpacyWrapper`

Page 1 of 13

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.