Metadata-Version: 2.4
Name: makeitaquote
Version: 1.1.0
Summary: DiscordBOT用のmake it a quote生成パッケージです
Home-page: https://github.com/veda00133912/makeitaquote
Author: Ryo001339
Project-URL: Bug Tracker, https://github.com/veda00133912/makeitaquote/issues
Keywords: discord,makeitaquote,image,generator,bot
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Communications :: Chat
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
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
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# makeitaquote
Discord用Make it a Quote生成パッケージです。
使用しているAPIが死んだら終わりです()

## Installation

```bash
pip install makeitaquote
```

## 使い方
```python
from makeitaquote import MiQ
# ...
miq = (
    MiQ()
    .set_from_message(referenced_message, format_text=True)
    .set_color(True)
    .set_watermark(bot.user.name)
)
image_bytes = miq.generate_beta()
file = discord.File(io.BytesIO(image_bytes), filename="quote.png")
```
