The Lexos Python library reproduces and extends most of the text analysis tools in the Lexos web app. Lexos is designed to implement many common text analysis procedures in a way that saves the user having to re-invent the wheel or figure out how to combine multiple Python packages to achieve a given result. It is intended to be used as a library in other projects to build backend functions for applications, but it can be used in standalone scripts or in Jupyter notebooks. As with the original web app, it is designed to accessible to entry-level users whilst offering power functionality for students and researchers, particularly in the Humanities. It is also designed to be as language-agnostic as possible so that it can be used for a wide variety of historical and under-resourced languages.
A full discussion of the use of the API can be found on the website Documentation website.
- Loads texts from a variety of sources into a common data structure.
- Manages a corpus of texts and generates stastics about the corpus.
- Performs text pre-processing ("scrubbing") and splitting ("cutting").
- Performs tokenization and trains language models using spaCy.
- Creates assorted visualizations of term vectors.
- Performs hierarchical and kmeans clustering.
- Generates topic models and topic model visualizations using MALLET and DFR Browser 2.
And more!
pip install lexosTo update to the latest version, use
pip install -U lexosOr, if you are using uv:
uv add lexosLexos uses spaCy language models to obtain language-specific information about texts. By default, it comes with spaCy's multi-language model xx_sent_ud_sm and its small English-language en_core_web_sm.
If you are working in another language or need a larger language model, you can download instructions for additional models from the spaCy models page. Use the following command:
python -m spacy download en_core_web_md # Replace with the name of your modelThe Lexos API is currently in beta. Most of the core functionality of the Lexos web app, along with new features, has been implemented and documented. As of January 2026, the API is considered feature complete and stable for general use, but some rough edges remain. Feedback is welcome.
I will continue to fix bugs and improve the documentation as issues arise, but no major new features are planned at this time. The beta release coincides with at a time when the landscape of digital tools is rapidly evolving and AI-assisted coding is becoming more prevalent. I am waiting to see whether there is significant adoption of the Lexos library before investing more time in developing new features. If you like Lexos, you can help by requesting new features in the GitHub issues (labelled as "enhancement") or contributing them yourself.
- If are looking for help using Lexos, please post you question on the GitHub Discussions board.
- Bug reports and feature requests: Please use GitHub issues.
- For other types of contributions see the Documentation website.
This project is licensed under the MIT License - see the LICENSE file for details.
Kleinman, S., (2026). Lexos. v0.1.0b3 https://github.com/scottkleinman/lexos. doi:10.5281/zenodo.1403869.