Skip to content

Latest commit

 

History

History
 
 

Quotes Automation

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

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