Skip to content

Instantly share code, notes, and snippets.

@almorel
Created November 13, 2012 16:05
Show Gist options
  • Save almorel/4066624 to your computer and use it in GitHub Desktop.
Save almorel/4066624 to your computer and use it in GitHub Desktop.
Python persistance des données
import pickle
import datetime
# Store the time
pickle.dump( datetime.datetime.now(), open( "last.p", "wb" ) )
# Retreive the last time
previous_time=pickle.load( open( "last.p", "rb" ) )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment