26 lines
585 B
Python
26 lines
585 B
Python
from timezonefinder.timezonefinder import (
|
|
TimezoneFinder,
|
|
TimezoneFinderL,
|
|
)
|
|
|
|
# Import module-level functions
|
|
from timezonefinder.global_functions import (
|
|
timezone_at,
|
|
timezone_at_land,
|
|
unique_timezone_at,
|
|
certain_timezone_at,
|
|
get_geometry,
|
|
)
|
|
|
|
# https://docs.python.org/3/tutorial/modules.html#importing-from-a-package
|
|
# determines which objects will be imported with "import *"
|
|
__all__ = (
|
|
"TimezoneFinder",
|
|
"TimezoneFinderL",
|
|
"timezone_at",
|
|
"timezone_at_land",
|
|
"unique_timezone_at",
|
|
"certain_timezone_at",
|
|
"get_geometry",
|
|
)
|