# crfsuite-rs
[](https://travis-ci.org/bosondata/crfsuite-rs)
[](https://codecov.io/gh/bosondata/crfsuite-rs)
[](https://crates.io/crates/crfsuite)
[](https://docs.rs/crfsuite/)
[](https://pypi.org/project/crfsuite)
Rust binding to [crfsuite](https://github.com/chokkan/crfsuite)
## Installation
Add it to your ``Cargo.toml``:
```toml
[dependencies]
crfsuite = "0.2"
```
Add ``extern crate crfsuite`` to your crate root and your're good to go!
## Python package
There is also a Python package named `crfsuite`, you can install it via `pip`:
```bash
pip install -U crfsuite
```
Usage example:
```python
from crfsuite import Model
if __name__ == '__main__':
model = Model('path/to/crfsuite/model.crf')
tagged = model.tag(["abc", "def"])
print(tagged)
```
## License
This work is released under the MIT license. A copy of the license is provided in the [LICENSE](./LICENSE) file.