blob: 7b592d1c8b426125e58cef86f6e2201917b74832 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
"""
sphinx.search.ro
~~~~~~~~~~~~~~~~
Romanian search language: includes the JS Romanian stemmer.
:copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
from typing import Dict, Set
import snowballstemmer
from sphinx.search import SearchLanguage
class SearchRomanian(SearchLanguage):
lang = 'ro'
language_name = 'Romanian'
js_stemmer_rawcode = 'romanian-stemmer.js'
stopwords: Set[str] = set()
def init(self, options: Dict) -> None:
self.stemmer = snowballstemmer.stemmer('romanian')
def stem(self, word: str) -> str:
return self.stemmer.stemWord(word.lower())
|