Skip to content

Instantly share code, notes, and snippets.

@Mau5trakt
Created November 20, 2023 21:13
Show Gist options
  • Save Mau5trakt/4cd3b4d460750e6359dd66479f0cb644 to your computer and use it in GitHub Desktop.
Save Mau5trakt/4cd3b4d460750e6359dd66479f0cb644 to your computer and use it in GitHub Desktop.
get_image
def get_image(symbol):
try:
api_key = os.environ.get("API_KEY")
url = f"https://api.iex.cloud/v1/stock/{symbol.lower()}/logo?token={api_key}"
response = requests.get(url)
return response.json()["url"]
except:
return None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment