Metadata-Version: 2.1
Name: PyKomoran
Version: 0.1.1
Summary: PyKomoran is Python wrapper for KOMORAN, KOrean MORphical ANalyzer.
Home-page: https://docs.komoran.kr
Author: Junghwan Park
Author-email: reserve.dev@gmail.com
Maintainer: Junghwan Park
Maintainer-email: reserve.dev@gmail.com
License: Apache 2.0
Download-URL: https://github.com/komoran/PyKOMORAN/releases/download/0.1.1/PyKomoran-0.1.1.tar.gz
Description: # PyKOMORAN
        
        ## Introduction
        
        * PyKOMORAN is Python wrapper project for [KOMORAN, KOrean MORphical ANalyzer](https://github.com/shin285/KOMORAN).
        * PyKOMORAN is using [Py4J](https://github.com/bartdag/py4j) for wrapping [KOMORAN Java library](https://github.com/shin285/KOMORAN).
        * If you have any issue or question, please leave an issue on [PyKOMORAN Project](https://github.com/komoran/PyKOMORAN/issues).
        
        ## Installation
        
        ### Requirements
        
        * To use PyKomoran, the following requirements must be installed
          * Java 8+ JDK Environment
          * [Py4J](https://www.py4j.org/install.html), 0.10.8 (or higher)
            * We recommend you to use `pip`, as `pip install py4j`. It's simple and easy.
          * Python 3
            * We recommend you to use Python 3.6 or higher.
        
        ### How to install
        
        * You can install PyKomoran using `pip`.
        
        ```bash
          pip install PyKomoran
        ```
        
        * Or, just clone this repository and copy for use.
        
        ```bash
          git clone https://github.com/komoran/PyKOMORAN
          cp -r PyKOMORAN/python/PyKomoran [DEST_LOCATION_TO_YOUR_PROJECT]
        ```
        
        ## Usage
        
        ### Quick start
        
        * After import dependencies, create a Komoran instance.
        
        ```python
          from PyKomoran import *
          komoran = Komoran()
        ```
        
        * After then, run analyzing method.
        
        ```python
          komoran.get_plain_text("① 대한민국은 민주공화국이다.")
          # # Result
          # ①/SW 대한민국/NNP 은/JX 민주공화국/NNP 이/VCP 다/EF ./SF
        ```
        
        ### Usage in detail
        
        * Please refer [KOMORAN Document site](https://docs.komoran.kr) for more information.
        
        ## License
        
        * PyKOMORAN is distributed with the Apache 2.0 license, same as [KOMORAN](https://github.com/shin285/KOMORAN). See `LICENSE` for more information.
        
        ## Contributing
        
        * We're always happy to receive any contributions including code, bug reports and documentation fixes.
        * Please visit our [Website](https://www.shineware.co.kr/products/komoran/#demo?utm_source=komoran-kr&utm_medium=Referral&utm_campaign=github-PyKomoran) and/or [Project Organization at GitHub](https://github.com/komoran) for more information.
        * Or, if you have any necessary features or suggestion? Please leave your idea on [Request to add new feature](https://github.com/komoran/PyKOMORAN/issues/new?template=FEATURE_REQUEST.md)
        
Keywords: KOMORAN,KOrean MORphical ANalyzer,MORphical Analyzer,Text Analyzer,Tokenizer,PoS Tagger,Korean,Linguistic,NLP,Natural Language Processing
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: Korean
Classifier: Programming Language :: Java
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Software Development :: Libraries :: Java Libraries
Classifier: Topic :: Text Processing :: Linguistic
Description-Content-Type: text/markdown
Provides-Extra: test
