Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 1.21 KB

File metadata and controls

47 lines (29 loc) · 1.21 KB

Quotes Automation

For quotes automation we are using quote library which is a python wrapper for the Goodreads Quote API. To generate a random quote we will be using the quote function from the quote module.

Installation

Install with pip command in any terminal

pip install poetpy

OR

pip install -r requirements.txt

Working

It is simple to use and quote library can also be used from the command line tool.

from quote import quote

author = 'Albert Einstein'

result = quote(author, limit=2)

print(result)

Output

In PyCharm

In CLI

Contributor

Umesh Singh