1
0
Fork 0
quotes-bot-python/fetch.py
2025-01-31 18:58:45 -06:00

8 lines
208 B
Python

import requests
def fetchQuote(quoteId):
quote = requests.get("https://quotes.everypizza.im/image/" + quoteId)
if quote.status_code == 200:
return quote.content
else:
return None