Skip to content

Instantly share code, notes, and snippets.

/input Secret

Created July 15, 2017 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/d4a89d73de748b7695a51c4952346f55 to your computer and use it in GitHub Desktop.
Save anonymous/d4a89d73de748b7695a51c4952346f55 to your computer and use it in GitHub Desktop.
[{
"longitude":51.5074,
"latitude":0.1278
}]
[{
"longitude":51.5074,
"latitude":0.1278
},
"longitude":51.5074,
"latitude":0.1278
}]
latlong = { "latitude": latitude,"longitude": longitude}
##first time run
if os.stat(filepath).st_size==0: //check to see if file has been created if not, write first line.
with open(filepath, 'w') as outfile:
json.dump(latlong, outfile)
else:
##apending the json dict
with open(filepath, mode='r+') as feedsjson: //this is where the file is meant to be appended.
feeds = json.load(feedsjson)
newdata = (latlong)
feeds.update(newdata)
json.dump(feeds, feedsjson)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment