A pure-python implementation of the Omorfi library that provides Finnish morphological analysis
Project description
PyOmorfi
This is a pure-python implementation of Omorfi, a free and open source morphological analyzer for Finnish.
Most of the files have been copied from the Omorfi repository. HFST has been replaced with KFST, a pure-python implementation of finite state transducers.
This package includes a pre-built transducer, so you don't need to build the transducer yourself. For most part, this library should be a drop-in replacement for Omorfi.
Installation
Pyomorfi is available on PyPI and can be installed with pip:
pip install pyomorfi
Usage
PyOmorfi has the same API as Omorfi, so you can use it in the same way as Omorfi.
Please refer to the Omorfi documentation for more information.
Just import pyomorfi.omorfi
instead of omorfi
.
from pyomorfi.omorfi import Omorfi
omorfi = Omorfi()
omorfi.load_analyser("omorfi.analyse.kfst")
analyses = omorfi.analyse("kissa")
There is also a function that loads the built-in transducers and returns an Omorfi
object:
from pyomorfi import load_omorfi
omorfi = load_omorfi()
analyses = omorfi.analyse("kissa")
Development
This package is in very early stages of its development and there are probably many bugs. Please report them if you find them!
If you want to contribute code, feel free to open pull requests.
License
PyOmorfi is licensed under the GNU GPL version 3. See the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyomorfi-1.0.1.tar.gz
.
File metadata
- Download URL: pyomorfi-1.0.1.tar.gz
- Upload date:
- Size: 7.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47fd5f96b1e72c762f1781189546fa3e698ceff855964a0b750304112f46cb7a |
|
MD5 | 9705ffbf5b153d97540fd7f8ecf10b11 |
|
BLAKE2b-256 | 578bedac9d24de850ac6bb16d69feb963994fbd3c56117d5601b5c54b6f21923 |
File details
Details for the file pyomorfi-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: pyomorfi-1.0.1-py3-none-any.whl
- Upload date:
- Size: 7.7 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 792456b74fee6ee1fa32e7b7c4643114195595b959686e2f602a9df4abd06623 |
|
MD5 | 25161ec5a8c190c63cee032940b2d08f |
|
BLAKE2b-256 | 9aa66624961e0bfec931dd2991f9dd8c806b04ecde67873a932dbfbf89dd804e |