delemma

Version, currently master branch1 version
  • master branchlatestMay 3, 2016

github.com/greyblake/crystal-delemma

Lemmatization tool for German language.implemented in Crystal

2 stars
0 dependents
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  delemma:
    github: greyblake/crystal-delemma
    branch: master

master is a branch, not a release, so this tracks it rather than pinning a version.

Then run:

shards install

shard.yml

Crystal
no constraint declared
License
MIT
Author
Sergey Potapov

Dependencies

This version declares no dependencies.

README

Delemma Build Status

Crystal lemmatization tool for German language.

Installation

Add this to your application's shard.yml:

dependencies:
  delemma:
    github: greyblake/crystal-delemma

Usage

require "delemma"

Delemma.lemmatize("Bücher")  # => "Buch"
Delemma.lemmatize("gesagt")  # => "sagen"

Contributors

  • greyblake Sergey Potapov - creator, maintainer