print("I ❤ Jupyter!") bool("Markdown") and bool("Jupyter") import sys !{sys.executable} -m pip install numpy LINE_TO_ADD = "c.NotebookApp.contents_manager_class = 'notedown.NotedownContentsManager'" %store LINE_TO_ADD >> ~/.jupyter/jupyter_notebook_config.py for i in range(3): print("~"*9 + (":-)" if i==1 else "~~~") + "~"*9) import json data = None with open('san-francisco.geojson') as json_file: data = json.load(json_file) ## get a list of neighborhoods for i in range(len(data['features'])): print(data['features'][i]['properties']['name']) import sys !{sys.executable} -m pip install geopandas descartes import descartes import geopandas as gpd import matplotlib.pyplot as plt file = gpd.read_file('san-francisco.geojson') file.head() ax = file.plot(color='blue')