Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
kavyamanohar committed Aug 7, 2024
1 parent aef0e29 commit e38b071
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,13 @@ Note: Prefer using virtualenv for installation as the library is in experimental
Input: Unicode text...
Output: Normalized unicode text
>>> from libindic.normalizer import Normalizer("ml")
>>> normalizer = Normalizer()
>>> result = normalizer.normalize(u'പൂമ്പാററ')
>>> from libindic.normalizer import Normalizer
>>> normalizer = Normalizer("ml")
>>> result = normalizer.normalize('പൂമ്പാററ')
>>> print(result)
പൂമ്പാറ്റ
```

For more details read the [docs](http://indicstemmer.rtfd.org/)

## Running tests
To run tests,

Expand Down

0 comments on commit e38b071

Please sign in to comment.