From deee9b7ca14923dba5f7089ed3353d2e2f0d658b Mon Sep 17 00:00:00 2001 From: Yader Velásquez Date: Wed, 11 Aug 2010 18:52:12 +0000 Subject: added new fecha.py file with new classes and fixed the date display --- (limited to 'fecha.py') diff --git a/fecha.py b/fecha.py new file mode 100644 index 0000000..ee9ebe7 --- /dev/null +++ b/fecha.py @@ -0,0 +1,32 @@ +# -*- 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 . + +from datetime import date + +class Fecha(object): + '''a simple class for get and convert date''' + + def __init__(self): + '''init class''' + self.fecha = date.today() + + def convertir(self): + '''class for convert date''' + return self.fecha.strftime("%d de %B de %Y") + + -- cgit v0.9.1