Skip to content

Instantly share code, notes, and snippets.

@aprilspeight
Last active February 22, 2020 00:34
Show Gist options
  • Save aprilspeight/660403b6d9842831b20d9945a4790ed6 to your computer and use it in GitHub Desktop.
Save aprilspeight/660403b6d9842831b20d9945a4790ed6 to your computer and use it in GitHub Desktop.
response = requests.get('https://api.nasa.gov/planetary/apod?api_key=XXXXXXXXXX')
response_json = response.json()
# variables for the text message
picture = response_json['url']
title = response_json['title']
rocket = emoji.emojize(":rocket:")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment