Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/getsadzeg/gegram-class
Mistakes and barbarismes fixer for Georgian language.
https://github.com/getsadzeg/gegram-class
georgia java
Last synced: about 2 months ago
JSON representation
Mistakes and barbarismes fixer for Georgian language.
- Host: GitHub
- URL: https://github.com/getsadzeg/gegram-class
- Owner: getsadzeg
- License: mit
- Created: 2015-09-25T19:27:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-20T18:15:27.000Z (almost 8 years ago)
- Last Synced: 2024-08-04T04:04:58.410Z (5 months ago)
- Topics: georgia, java
- Language: Java
- Homepage:
- Size: 49.8 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: contributing.md
- License: LICENSE
Awesome Lists containing this project
- awesome-georgia - getsadzeg/gegram-class - Library for replacing barbarisms in Georgian sentences (Java). (Categories)
README
# About
``gegram`` is library which helps you to integrate Georgian grammar utilities in Java. It's originally created to throw barbarismes out of input.
*Note: No need of internet connection. Everything is offline and local.*
# Usage
Just clone repository with
```
git clone https://github.com/getsadzeg/gegram-class.git
```
Now copy folder named 'gegram' to your project and access it's classes via:```java
import gegram.lib.*;
```After that you can create Gegram object and parse input(it must be array):
```java
Gegram gram = new Parse(input);
System.out.println(gram.parseBarbarism());
```# Feel free to fork
You can fork, modify and change the code under MIT license. The project contains LICENSE file to see full license description.