GE
germanattanasio/python_greek_stemmer
Python implementation of Greek Stemmer (based on Skroutz's Ruby version).
Greek Stemmer
This is a Python implementation of Skroutz's Ruby Greek stemmer.
Maintainer's Note
This fork is an attempt to help maintain the repository due to its original author's inactivity. All credit for the original work remains with Andreas Loupasakis.
Credits
This project was originally developed by Andreas Loupasakis. All credits for the initial work go to him.
- Original repository: @alup/python_greek_stemmer
- Author's Github: @alup
Usage
from greek_stemmer import GreekStemmer
stemmer = GreekStemmer()
stemmer.stem('ΘΑΛΑΣΣΑ')Installation
To install using pip:
pip install greek-stemmer-plusLocal Development
Setting up the local environment
- Clone the repository.
- Install Poetry:
curl -sSL https://install.python-poetry.org | python - - Install project dependencies using Poetry:
poetry install
Running tests
poetry run pytest tests/Proposing Changes
- Fork the repository.
- Create a new branch for your changes.
- Make your changes and commit them using Angular commit message conventions.
- Submit a pull request to the main repository.