Metadata-Version: 2.2
Name: quotes_library
Version: 0.9
Summary: This python library generates quotes
Home-page: https://github.com/mymi14s/quotes_library
Author: Anthony Emmanuel
Author-email: 'Anthony Emmanuel' <hackacehuawei@gmail.com>
Project-URL: Homepage, https://github.com/mymi14s/quotes_library
Project-URL: Issues, https://github.com/mymi14s/quotes_library/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: home-page
Dynamic: requires-python


**QUOTES LIBRARY**

**Overview**

This Python library is designed to provide an easy and efficient quotes retrieval. It supports various query options, including filtering by category, author, selecting a random quote, or specifying the number of quotes to retrieve. This library is perfect for applications that need to display inspirational, humorous,  thematic and other quotes to users. It comprise 500k quotes and 100+ categories.

**Features**

 - **Retrieve Quotes by Category**: Users can specify a category to filter the quotes. This is useful for applications that need to display quotes relevant to specific themes or subjects.
 - **Find Quotes by Author**: This feature allows users to retrieve quotes from their favorite authors, making it easy to find wisdom from specific thinkers or writers.
 - **Random Quote Selection**: For a more spontaneous experience, users can retrieve a random quote. This feature is ideal for daily quote applications or when you want to offer users a surprise inspiration.
 - **Limit the Number of Quotes**: Users can specify how many quotes they want to retrieve, offering flexibility for different use cases, whether it's displaying a single quote of the day or a list of quotes on a particular topic.
 - **Categories**: Love, Life, Friend, Leadership, Inspiration, Emotion, Humor, Marriage, Poetry, Romance, Classis, Health, and many more.

**Installation**

`pip install quotes-library` 

or 

`pip install -e git+https://github.com/mymi14s/quotes_library#egg=quotes_library`

To use this library, you must have Python installed on your system

**Usage**

To use this library, you need to import the get_quotes function from the module. Here's a basic example of how to retrieve and print a random quote:

    from quotes_library import get_quotes, get_authors, get_categories

***Retrieve a single random quote***

    random_quote = get_quotes(random=True)
    print(random_quote)
    {'data': [{'author': 'Gayle Forman, Where She Went', 'category': 'love, romance', 'quote': "I force my eyes upward and look at Mia for the first time. She's still beautiful. Not in an obvious Vanessa LeGrande or Bryn Shraeder kind of way. In a quiet way that's always been devastating to me. Her hair, long and dark, is down now, swimming damply against her bare shoulders, which are still milky white and covered with the constellation of freckles that I used to kiss. The scar on her left shoulder, the one that used to be an angry red weld is silvery pink now. Almost like the latest rage in tattoo accessories. Almost pretty."}], 'status_code': 200, 'status_text': 'success'}

**Advanced Usage**

Here are more advanced ways to use the library:
***Retrieve Quotes by Category***:

    quotes = get_quotes(category='inspirational', count=5)
    quotes = get_quotes(category='inspirational', count=5, random=True) # random quotes

**Find Quotes by a Specific Author**:

    quotes = get_quotes(author='Mark Twain', count=3)

**Get Multiple Random Quotes**:

    quotes = get_quotes(random=True, count=3)

**Get Authors**:
    authors = get_authors(count=5)
    authors = get_authors(count=5, random=True) # True|1 to randomize result
    # if no count supplied all authors will be retrieved.

**Get Categories**:
    categories = get_categories(count=5)
    categories = get_categories(count=5, random=True) # True|1 to randomize result
    # if no count supplied, all categories will be retrieved.

**Get Authors**:

    authors = get_authors(count=5)
    authors = get_authors(count=5, random=True) # True|1 to randomize result
    # if no count supplied all authors will be retrieved.

**Get Categories**:

    categories = get_categories(count=5)
    categories = get_categories(count=5, random=True) # True|1 to randomize result
    # if no count supplied, all categories will be retrieved.

**Error Handling**

The library is designed to be resilient and provide useful feedback. In case of a database connection error or query failure, it returns a structured response indicating the status code and error message.

**License**

This project is licensed under the MIT License - see the LICENSE.md file for details.

**Github**
[Quotes Library](https://github.com/mymi14s/quotes_library)
[Quotes API](https://github.com/mymi14s/quotes_api)
**Docker**
[Quotes API](https://hub.docker.com/r/mymi14s/quotes-api)
