Comment obtenir des images aléatoires frrom Quotefancy Python
from quotefancy import get_quote
# Downloading quote as Image
get_quote(type='img', download=True)
# Getting as Text
print(get_quote(type='text'))
Atharva Dixit