# read geojson data
from urllib.request import urlopen
import json
with urlopen('https://raw.githubusercontent.com/plotly/datasets/master/geojson-counties-fips.json') as response:
counties = json.load(response)
# import pandas and plotly
# read data as pandas dataframe from this url:
# https://raw.githubusercontent.com/plotly/datasets/master/fips-unemp-16.csv
# create figure
# show figure