Created
June 5, 2014 00:47
-
-
Save daguar/9a6fc83d1a67939c5110 to your computer and use it in GitHub Desktop.
Using IPython's embed() to interactively play with code at a specific point
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
from IPython import embed | |
import json | |
geojson_string = open('good_oakland_bars.geojson').read() | |
geodata_dict = json.loads(geojson_string) | |
embed() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment