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 'fecha.py') diff --git a/fecha.py b/fecha.py index ee9ebe7..6281674 100644 --- a/fecha.py +++ b/fecha.py @@ -16,17 +16,22 @@ #You should have received a copy of the GNU General Public License #along with this program. If not, see . -from datetime import date +from time import time, localtime, strftime class Fecha(object): '''a simple class for get and convert date''' def __init__(self): '''init class''' - self.fecha = date.today() + self.fecha_unix = time() def convertir(self): - '''class for convert date''' - return self.fecha.strftime("%d de %B de %Y") - + '''return a friendly date for user''' + return strftime("%d de %b de %Y", localtime(self.fecha_unix)) + + def exportar(self): + '''convert a unix date to int and after to string''' + self.fecha = int(self.fecha_unix) + return str(self.fecha) + -- cgit v0.9.1