Sastrawi: Difference between revisions

From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs)
No edit summary
Onnowpurbo (talk | contribs)
No edit summary
Line 3: Line 3:
Sastrawi Python is a simple python library which allows you to reduce inflected words in Indonesian Language (Bahasa Indonesia) to their base form (stem). This is Python port of the original Sastrawi project written in PHP (credits goes to the original author and contributors of Sastrawi PHP).
Sastrawi Python is a simple python library which allows you to reduce inflected words in Indonesian Language (Bahasa Indonesia) to their base form (stem). This is Python port of the original Sastrawi project written in PHP (credits goes to the original author and contributors of Sastrawi PHP).


Build Status Coverage Status PyPI version
==Cara Install==
Cara Install


Sastrawi dapat di-install menggunakan pip, dengan menjalankan perintah berikut di terminal/command prompt : pip install Sastrawi
Sastrawi dapat di-install menggunakan pip, dengan menjalankan perintah berikut di terminal/command prompt :
Penggunaan
 
pip install Sastrawi
 
 
==Penggunaan==


Jalankan baris-baris kode berikut di Python interactive terminal :
Jalankan baris-baris kode berikut di Python interactive terminal :
Line 28: Line 31:
  # mereka tiru
  # mereka tiru


Demo
==Demo==


Live demo URL : https://pysastrawi-demo.appspot.com/
Live demo URL : https://pysastrawi-demo.appspot.com/


Repository : https://github.com/har07/pystastrawi-demo
Repository : https://github.com/har07/pystastrawi-demo
Lisensi
 
==Lisensi==


Lisensi Sastrawi Python adalah MIT License (MIT).
Lisensi Sastrawi Python adalah MIT License (MIT).

Revision as of 00:02, 9 February 2017

Sastrawi Python

Sastrawi Python is a simple python library which allows you to reduce inflected words in Indonesian Language (Bahasa Indonesia) to their base form (stem). This is Python port of the original Sastrawi project written in PHP (credits goes to the original author and contributors of Sastrawi PHP).

Cara Install

Sastrawi dapat di-install menggunakan pip, dengan menjalankan perintah berikut di terminal/command prompt :

pip install Sastrawi


Penggunaan

Jalankan baris-baris kode berikut di Python interactive terminal :

# import StemmerFactory class
from Sastrawi.Stemmer.StemmerFactory import StemmerFactory

# create stemmer
factory = StemmerFactory()
stemmer = factory.create_stemmer()

# stemming process
sentence = 'Perekonomian Indonesia sedang dalam pertumbuhan yang membanggakan'
output   = stemmer.stem(sentence)

print(output)
# ekonomi indonesia sedang dalam tumbuh yang bangga 

print(stemmer.stem('Mereka meniru-nirukannya'))
# mereka tiru

Demo

Live demo URL : https://pysastrawi-demo.appspot.com/

Repository : https://github.com/har07/pystastrawi-demo

Lisensi

Lisensi Sastrawi Python adalah MIT License (MIT).

Project ini mengandung kamus kata dasar yang berasal dari Kateglo dengan lisensi CC-BY-NC-SA 3.0. Informasi Lebih Lanjut

   Sastrawi PHP Repository page



Referensi