I want to use Lithuanian language stemmer in Python, however, there is no Lithuanian language in common tools like NLTK.
However, I could find snowball .sbl files of Lithuanian stemmers here and here.
But how to use them in Python?
What I was able to found is command line approach to get .c files. But what next?
As is stated in snowball official page, there is PyStemmer - a Python interface for snowball. But there I could not find any way to use new or custom .sbl algorithms.
So how to get new .sbl algorithm to Python?