A sample lib Zen of Python


Keywords
Mussi
License
BSD-3-Clause
Install
pip install zen-quotes==1.1.2

Documentation

zen_quotes

A simple library that returns the Zen of Python quotes.

  • Installation

    pip install zen_quotes

  • Usage

# import lib 
from zen_quotes.quote import Quotes
# That will return you all quotes in English.
Quotes().get_quotes()
# Altogether there are 19 quotations, but if you need only one quotation, 
# then pass the quotation position number on the list.

Quotes().get_quotes(quote=2) # this will return you the second quote on the list in English.

Quotes().get_quotes(lang='pt', quote=2) # this will return you the second quote on the list in Portuguese.

TODO

  • [] add other languages