Skip to content

Instantly share code, notes, and snippets.

@teenoh
Created November 1, 2017 23:38
Show Gist options
  • Save teenoh/5af9bc7c630ccb4088c2baae22e5e66e to your computer and use it in GitHub Desktop.
Save teenoh/5af9bc7c630ccb4088c2baae22e5e66e to your computer and use it in GitHub Desktop.
def search_gif(text):
#get a GIF that is similar to text sent
payload = {'s': text, 'api_key': '<GIPHY_API_KEY>'}
r = requests.get('http://api.giphy.com/v1/gifs/translate', params=payload)
r = r.json()
url = r['data']['images']['original']['url']
return url
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment