Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/fecha.py
diff options
context:
space:
mode:
authorYader Velásquez <yajosev@gmail.com>2010-08-11 18:52:12 (GMT)
committer Yader Velásquez <yajosev@gmail.com>2010-08-11 18:52:12 (GMT)
commitdeee9b7ca14923dba5f7089ed3353d2e2f0d658b (patch)
tree2d21f8cb2ef5be938a81e9e646f3cd19227eab89 /fecha.py
parent2c9e9bd0f3388f535afb64a83a7f4ca436df6966 (diff)
added new fecha.py file with new classes and fixed the date display
Diffstat (limited to 'fecha.py')
-rw-r--r--fecha.py32
1 files changed, 32 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>.
+
+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")
+
+