Metadata-Version: 2.1
Name: dajapy
Version: 0.1.1
Summary: 日本語のダジャレを判定するPythonパッケージ
Home-page: https://github.com/fujitako03
License: MIT
Author: fujitako03
Author-email: okome.osakana.oniku@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: SudachiDict-core (>=20210802.post1,<20210803)
Requires-Dist: SudachiPy (>=0.6.2,<0.7.0)
Project-URL: Documentation, https://github.com/fujitako03/dajapy
Project-URL: Repository, https://github.com/fujitako03/dajapy
Description-Content-Type: text/markdown

# dajapy
日本語のダジャレを判定するPythonパッケージ

## Installation
```
pip install dajapy
```

## Usage
```
import dajapy

text = "アルミ缶の上にあるみかん"
dajare_flag = dajapy.is_dajare(text)
print(dajare_flag)
```
output
```
True
```
