Opa_omroep-automatiseren/venv/lib/python3.8/site-packages/convertdate/__init__.py

47 lines
1.3 KiB
Python
Raw Normal View History

2020-12-27 20:00:11 +00:00
# -*- coding: utf-8 -*-
# This file is part of convertdate.
# http://github.com/fitnr/convertdate
# Licensed under the MIT license:
# http://opensource.org/licenses/MIT
# Copyright (c) 2016, fitnr <fitnr@fakeisthenewreal>
# Most of this code is ported from Fourmilab's javascript calendar converter
# http://www.fourmilab.ch/documents/calendar/
# which was developed by John Walker
#
# The algorithms are believed to be derived from the following source:
# Meeus, Jean. Astronomical Algorithms . Richmond: Willmann-Bell, 1991. ISBN 0-943396-35-2.
# The essential reference for computational positional astronomy.
#
from . import bahai
from . import coptic
from . import daycount
from . import dublin
from . import french_republican
from . import gregorian
from . import hebrew
from . import holidays
from . import indian_civil
from . import iso
from . import islamic
from . import julian
from . import julianday
from . import mayan
from . import persian
from . import positivist
from . import ordinal
__version__ = '2.2.0'
__all__ = [
'holidays', 'bahai', 'coptic', 'dublin',
'daycount',
'french_republican', 'gregorian', 'hebrew',
'indian_civil', 'islamic', 'iso',
'julian', 'julianday',
'mayan', 'persian', 'positivist', 'mayan',
'ordinal',
]