Metadata-Version: 2.1
Name: inspiring_quotes
Version: 0.2.7
Summary: A simple Python package for retrieving random inspirational quotes.
Home-page: https://github.com/cyberdeeb/inspiring-quotes
Author: cyberdeeb
Author-email: abrahamdeeb@gmail.com
Keywords: quotes inspirational motivational wisdom positivity self-improvement
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# inspiring_quotes

A simple Python package that provides random inspirational quotes. With a collection of 300 quotes, this library is perfect for adding a touch of motivation to your projects.

## Features

- Retrieve a random inspirational quote from a JSON file.
- Simple and easy to retrieve quote and author
- Over 300 inspiring quotes available

## Import the Library

```python
from inspiring_quotes1.quotes import get_random_quote
```

## Get a Random Quote

```python
quote = get_random_quote()
if quote:
    print(f"Quote: {quote['quote']}\nAuthor: {quote['author']}")
else:
    print("No quotes available.")
```
