{"id":16654415,"url":"https://github.com/ikegami-yukino/asa-python","last_synced_at":"2025-04-09T18:12:00.938Z","repository":{"id":57411721,"uuid":"103400495","full_name":"ikegami-yukino/asa-python","owner":"ikegami-yukino","description":"Japanese Argument Structure Analyzer (ASA) client for Python","archived":false,"fork":false,"pushed_at":"2019-02-16T14:52:32.000Z","size":12,"stargazers_count":11,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-09T18:11:58.418Z","etag":null,"topics":["japanese-language","natural-language-processing","parser"],"latest_commit_sha":null,"homepage":"http://www.cl.cs.okayama-u.ac.jp/study/project/asa/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ikegami-yukino.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGES.rst","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-09-13T13:02:46.000Z","updated_at":"2023-12-14T12:19:48.000Z","dependencies_parsed_at":"2022-08-27T17:11:32.148Z","dependency_job_id":null,"html_url":"https://github.com/ikegami-yukino/asa-python","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ikegami-yukino%2Fasa-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ikegami-yukino%2Fasa-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ikegami-yukino%2Fasa-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ikegami-yukino%2Fasa-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ikegami-yukino","download_url":"https://codeload.github.com/ikegami-yukino/asa-python/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248085326,"owners_count":21045139,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["japanese-language","natural-language-processing","parser"],"created_at":"2024-10-12T09:49:43.559Z","updated_at":"2025-04-09T18:12:00.920Z","avatar_url":"https://github.com/ikegami-yukino.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"ASA Python\n===================\n\n|pyversion| |version| |license|\n\nJapanese Argument Structure Analyzer (ASA) client for Python.\n\nIt requires ASA (available at http://www.cl.cs.okayama-u.ac.jp/study/project/asa/asa-scala/download/ ; Written in Japanese), CaboCha (https://taku910.github.io/cabocha/), and MeCab (http://taku910.github.io/mecab/).\n\nFor details about ASA, See http://www.cl.cs.okayama-u.ac.jp/study/project/asa/ (Written in Japanese)\n\nContributions are welcome!\n\n\nInstallation\n==============\n\n::\n\n mkdir asa\n cd asa\n wget http://www.cl.cs.okayama-u.ac.jp/wp-content/uploads/2017/05/asa20170503.tgz\n tar xzf asa20170503.tgz\n pip install asa\n\nExample\n===========\n\n.. code:: python\n\n from asa import ASA\n\n # Initialize a ASA instance\n analyzer = ASA(path-to-asa)\n\n # Let's analyze a sample sentence\n analyzer.parse('彼は村長だ')\n # =\u003e\n [{'ID': 0,\n   'category': '人',\n   'frame': '1-copula',\n   'link': 1,\n   'main': '彼',\n   'part': 'は',\n   'tense': 'PRESENT',\n   'type': 'elem',\n   'wakati': ['彼\\tカレ\\t彼\\t名詞,代名詞,一般\\t\\t\\tO', 'は\\tハ\\tは\\t助詞,係助詞\\t\\t\\tO']},\n  {'ID': 1,\n   'category': '人',\n   'frame': '0-elem',\n   'link': -1,\n   'main': '村長',\n   'mood': 'INDICATIVE',\n   'part': 'だ',\n   'polarity': 'AFFIRMATIVE',\n   'sentelem': 'PREDICATE',\n   'tense': 'PRESENT',\n   'type': 'copula',\n   'voice': 'ACTIVE',\n   'wakati': ['村長\\tソンチョウ\\t村長\\t名詞,一般\\t\\t\\tO', 'だ\\tダ\\tだ\\t助動詞\\t特殊・ダ\\t基本形\\tO']}]\n\nLICENSE\n=========\n\nMIT License\n\n\nCopyright\n=============\n\nASA Python\n(c) 2017- Yukino Ikegami. All Rights Reserved.\n\nASA (Original version)\n(c) Okayama University Takeuchi Lab.\n\nACKNOWLEDGEMENT\n=================\n\nThis module uses 意味役割付与システム (ASA)\nI thank to Okayama University Takeuchi Lab.\n\n\n.. |pyversion| image:: https://img.shields.io/pypi/pyversions/asa.svg\n\n.. |version| image:: https://img.shields.io/pypi/v/asa.svg\n    :target: http://pypi.python.org/pypi/asa/\n    :alt: latest version\n\n.. |license| image:: https://img.shields.io/pypi/l/asa.svg\n    :target: http://pypi.python.org/pypi/asa/\n    :alt: license\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fikegami-yukino%2Fasa-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fikegami-yukino%2Fasa-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fikegami-yukino%2Fasa-python/lists"}