Metadata-Version: 2.4
Name: dajudge
Version: 1.0.0
Summary: Japanese Pun (Dajare) detector
Author-email: Nemupy <me.nemupy@gmail.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: <3.13,>=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: sudachipy
Requires-Dist: sudachidict_core
Dynamic: license-file

# dajudge
ダジャレを判定するモジュール

# Install
```cmd
# Linux/OS
$ python -m pip install -U dajudge

# Windows
> py -3 -m pip install -U dajudge
```    

# Example 
```py
from dajapy import dajudge

# Simple boolean check
if dajudge("布団が吹っ飛んだ"):
    print("It's a pun!")

# Get detailed info
res = dajudge("アルミ缶の上にあるみかん")
print(f"Score: {res.score}")
print(f"Phrase: {res.phrase}")
print(f"Length: {res.length}")
```
