How can I parse GeoJSON with Python
You can read it like any json:
import json
data = json.loads(datastring)
data['features'][0]['geometry'] #Your first point
import geojson
with open(path_to_file) as f:
gj = geojson.load(f)
features = gj['features'][0]