17 lines
468 B
Python
17 lines
468 B
Python
'''
|
|
A module that sits between the API and the cog
|
|
and provides functions for easy communication
|
|
with the inspirobot API
|
|
'''
|
|
import requests
|
|
from util import logging
|
|
|
|
def get_inspirational_quote() -> str:
|
|
response = requests.get("http://inspirobot.me/api?generate=true")
|
|
|
|
if not response.ok:
|
|
logging.error(f"Inspirobot API response not OK: {response.status_code} [http://inspirobot.me/api?generate=true]")
|
|
return None
|
|
|
|
return response.text
|