File: hdate_python.py

package info (click to toggle)
libhdate 1.6.02-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 3,912 kB
  • sloc: sh: 11,647; ansic: 5,120; pascal: 1,059; makefile: 196; sed: 16; cpp: 13; perl: 7; python: 7; php: 5; ruby: 5
file content (43 lines) | stat: -rw-r--r-- 1,201 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#! /usr/bin/python

# hdate_python.py
# example file for libhdate.
#

#
# run: python hdate_python.py
#

#
#  Copyright (C) 2008  Yaacov Zamir <kzamir@walla.co.il>
#  
#  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/>.
#

# Use locale to support hdate localization
import locale
locale.setlocale(locale.LC_ALL,'')
        
# Import the hdate library
from hdate import *;

# Create a new Hdate object
h = Hdate ();

# Print gregorian date
print "Today is:"
print str (h.get_gday ()) + "," + str (h.get_gmonth ()) + "," + str (h.get_gyear ())

# Print hebrew date: 0 - long format
print h.get_format_date (0);