Skip to content

Commit 49805da

Browse files
committed
Merge branch 'master' of https://github.com/har07/sastrawi
merge readme
2 parents 7e21247 + 274223a commit 49805da

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
Sastrawi
2-
=========
1+
Sastrawi Python
2+
===============
33

4-
Sastrawi is a simple Python library which allows you to reduce inflected words in Indonesian Language (Bahasa Indonesia) to their base form ([stem](http://en.wikipedia.org/wiki/Stemming)).
5-
This is Python port of the original [Sastrawi](https://github.com/sastrawi/sastrawi) project written in PHP.
4+
Sastrawi Python is a simple python library which allows you to reduce inflected words in Indonesian Language (Bahasa Indonesia) to their base form ([stem](http://en.wikipedia.org/wiki/Stemming)).
5+
This is Python port of the original [Sastrawi](https://github.com/sastrawi/sastrawi) project written in PHP (credits goes to the original author and contributors of Sastrawi PHP).
66

77

88
[![Build Status](https://travis-ci.org/har07/sastrawi.svg?branch=master)](https://travis-ci.org/har07/sastrawi)
@@ -20,14 +20,14 @@ Penggunaan
2020
Jalankan baris-baris kode berikut di *Python interactive terminal* :
2121

2222
```python
23-
# import Sastrawi package
23+
# import StemmerFactory class
2424
from Sastrawi.Stemmer.StemmerFactory import StemmerFactory
2525

2626
# create stemmer
2727
factory = StemmerFactory()
2828
stemmer = factory.create_stemmer()
2929

30-
# stem
30+
# stemming process
3131
sentence = 'Perekonomian Indonesia sedang dalam pertumbuhan yang membanggakan'
3232
output = stemmer.stem(sentence)
3333

0 commit comments

Comments
 (0)