BBA is An object oriented, synchronous api wrapper for BreadBotAPI.
import bba
#Generate Random Sentence
client = bba.Client("YOUR API KEY HERE")
word = client.get_sentence()
print(word.response)
#Calculator
res = client.calculator("AnsxAns+10", "10")
print(res.result)