Metadata-Version: 2.1
Name: random-quotes-generator
Version: 0.1.0
Summary: A Python package to generate random famous quotes for inspiration.
Author: Seun Fashina
Author-email: fashinaoluwaseun36@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

# random-quotes-generator

A Python package to generate random quotes.

## Introduction

The `random-quotes-generator` package is designed to provide users with a simple and easy way to generate famous random quotes. By using this package, you can easily integrate random quotes into your Python projects.

## Installation

To install the package, use the following command:

```bash
pip install random-quotes-generator
```

## Usage

Import the `random_quotes_generator` module and call the `get_random_quotes()` function:

```python
import random_quotes_generator

quote = random_quotes_generator.get_random_quotes()
print(quote)
```

## Example

Here's an example of how to use the `random_quotes_generator` package:

```python
import random_quotes_generator


quote = random_quotes_generator.get_random_quotes()
print("Random Quote:")
print(quote)
```

## Contributing

We welcome contributions from the community. If you have any suggestions, bug reports, or feature requests, please create an issue or submit a pull request.

## Acknowledgment

Special thanks to [Seun Fashina](https://github.com/SeunFashina002) for developing this package.

## License

The MIT License (MIT)

Copyright (c) 2023 Seun Fashina

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


