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-16 02:18:07 (GMT)
committer Yader Velásquez <yajosev@gmail.com>2010-08-16 02:18:07 (GMT)
commitf54c067c71f61f70d0c205f2baf4d846c3329efe (patch)
tree29133ba493041cb51bcc773f137cb3a1cde4e7b5 /fecha.py
parentdeee9b7ca14923dba5f7089ed3353d2e2f0d658b (diff)
new classes and functions for time and file
Diffstat (limited to 'fecha.py')
-rw-r--r--fecha.py15
1 files changed, 10 insertions, 5 deletions
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 <http://www.gnu.org/licenses/>.
-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)
+