Metadata-Version: 1.1
Name: asa
Version: 0.1.4
Summary: Japanese Argument Structure Analyzer (ASA) client for Python
Home-page: https://github.com/ikegami-yukino/asa-python
Author: Yukino Ikegami
Author-email: yknikgm@gmail.com
License: MIT License
Description-Content-Type: UNKNOWN
Description: ASA Python
        ===================
        
        |pyversion| |version| |license|
        
        Japanese Argument Structure Analyzer (ASA) client for Python.
        
        It requires ASA (available at http://www.cl.cs.okayama-u.ac.jp/study/project/asa/asa-scala/download/ ; Written in Japanese)
        
        For details about ASA, See http://www.cl.cs.okayama-u.ac.jp/study/project/asa/ (Written in Japanese)
        
        Contributions are welcome!
        
        
        Installation
        ==============
        
        ::
        
         mkdir asa
         cd asa
         wget http://www.cl.cs.okayama-u.ac.jp/wp-content/uploads/2017/05/asa20170503.tgz
         tar xzf asa20170503.tgz
         pip install asa
        
        Example
        ===========
        
        .. code:: python
        
         from asa import ASA
        
         # Initialize a ASA instance
         asa = ASA(path-to-asa)
        
         # Let's analyze a sample sentence
         asa.parse('彼は村長だ')
         # =>
         [{'category': '人',
           'frame': '1-copula',
           'link': 1,
           'main': '彼',
           'part': 'は',
           'tense': 'PRESENT',
           'type': 'elem',
           'wakati': ['彼\tカレ\t彼\t名詞,代名詞,一般\t\t\tO', 'は\tハ\tは\t助詞,係助詞\t\t\tO']},
          {'category': '人',
           'frame': '0-elem',
           'link': -1,
           'main': '村長',
           'mood': 'INDICATIVE',
           'part': 'だ',
           'polarity': 'AFFIRMATIVE',
           'sentelem': 'PREDICATE',
           'tense': 'PRESENT',
           'type': 'copula',
           'voice': 'ACTIVE',
           'wakati': ['村長\tソンチョウ\t村長\t名詞,一般\t\t\tO', 'だ\tダ\tだ\t助動詞\t特殊・ダ\t基本形\tO']}]
        
        
        LICENSE
        =========
        
        MIT License
        
        
        Copyright
        =============
        
        ASA Python
        (c) 2017- Yukino Ikegami. All Rights Reserved.
        
        .. |pyversion| image:: https://img.shields.io/pypi/pyversions/asa.svg
        
        .. |version| image:: https://img.shields.io/pypi/v/asa.svg
            :target: http://pypi.python.org/pypi/asa/
            :alt: latest version
        
        .. |license| image:: https://img.shields.io/pypi/l/asa.svg
            :target: http://pypi.python.org/pypi/asa/
            :alt: license
        
        
        CHANGES
        =======
        
        0.1.4 (2017-09-26)
        -------------------------
        
        - Delete encoding option.
        
        
        0.1.3 (2017-09-14)
        -------------------------
        
        - First release.
        
Keywords: argument structure analyzer
Platform: POSIX
Platform: Windows
Platform: Unix
Platform: MacOS
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Japanese
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Text Processing :: Linguistic
