From f54c067c71f61f70d0c205f2baf4d846c3329efe Mon Sep 17 00:00:00 2001 From: Yader Velásquez Date: Mon, 16 Aug 2010 02:18:07 +0000 Subject: new classes and functions for time and file --- (limited to 'archivo.py') diff --git a/archivo.py b/archivo.py new file mode 100644 index 0000000..ab3dbee --- /dev/null +++ b/archivo.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# +#Copyright (C) 2010, Yader Velasquez +#Copyright (C) 2010, Marcelo Gutierrez +# +#This program is free software: you can redistribute it and/or modify +#it under the terms of the GNU General Public License as published by +#the Free Software Foundation, either version 3 of the License, or +#(at your option) any later version. +# +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. +# +#You should have received a copy of the GNU General Public License +#along with this program. If not, see . +# +#Utils for make a date dictionary and save it in a file + +import pickle + +def guardar_dato(indice, contenido, archivo): + '''get a id dependig of the unix time, and the content''' + indice = str(indice) + dict = {} + dict[indice] = contenido + f = open(archivo, 'w') + pickle.dump(dict, f) + f.close() -- cgit v0.9.1