Last active
February 9, 2023 10:42
-
-
Save git-shogg/70882b2a94acfe2b2c0bdbb1060ef271 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#--- Import the Required Libraries --- | |
import requests | |
import json | |
import pandas as pd | |
import open_figi_key | |
import time | |
import seaborn as sns | |
import numpy as np | |
import matplotlib.pyplot as plt | |
#--- Settings --- | |
OPEN_FIGI_KEY = "ENTER_OPENFIGI_KEY_HERE" | |
OPEN_FIGI_API = "https://api.openfigi.com/v3/mapping" | |
HEADERS = {"X-OPENFIGI-APIKEY": "{}".format(open_figi_key.KEY)} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment