Metadata-Version: 2.1
Name: InspiroQuotes
Version: 1.0.0
Summary: An API using Inspiro AI quote generator.
Home-page: https://github.com/SOME-1HING/InspiroQuotes
Author: SOME1HING
Author-email: yashprakash2005@gmail.com
License: GNU General Public License v3.0
Keywords: telegram,inspiro,quote,ai,inspiroquoute,bot,api,gban,scan
Classifier: Framework :: AsyncIO
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
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: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Build Tools
Description-Content-Type: text/markdown

# InspiroQuotes

An API using Inspiro AI quote generator.

## Installation

```Python
pip install InspiroQuotes
```

## Example

```Python
from InspiroQuotes import Quote

link = Quote.quote


from pyrogram import filters, Client


pbot = Client("PyroBot", api_id="API_ID", api_hash="API_HASH", bot_token="TOKEN")


@pbot.on_message(filters.command("quote"))
async def sauce(_, message):

    quote_url = await Quote.quote
    return await message.reply_photo(photo=quote_url)
```
