An api that helps to get sentiments about companies and celebrities
url = "https://api-devclan.herokuapp.com/api_server/sentiment"
payload = {'Sentiment': 'name_of_celebrity_or_company'}
r = request.post(url, data=payload)
sentiments = r.json()
where ''name_of_celebrity_or_company' is the exact name of brand or celebrity you'll like to fetch sentiment data on.
To test with a UI, click here