Iteration 1: - Dark theme with 3-way toggle - Dynamic heatmap gradient (blue→red) - Radius up to 100km - Save & Calculate workflow Iteration 2: - Terrain overlay toggle - Batch height operations - Zoom-dependent heatmap rendering Infrastructure: - Backend FastAPI on 8888 - Frontend static build via Caddy - Systemd services - Caddy reverse proxy integration
46 lines
868 B
Python
46 lines
868 B
Python
from .core import (
|
|
IDNABidiError,
|
|
IDNAError,
|
|
InvalidCodepoint,
|
|
InvalidCodepointContext,
|
|
alabel,
|
|
check_bidi,
|
|
check_hyphen_ok,
|
|
check_initial_combiner,
|
|
check_label,
|
|
check_nfc,
|
|
decode,
|
|
encode,
|
|
ulabel,
|
|
uts46_remap,
|
|
valid_contextj,
|
|
valid_contexto,
|
|
valid_label_length,
|
|
valid_string_length,
|
|
)
|
|
from .intranges import intranges_contain
|
|
from .package_data import __version__
|
|
|
|
__all__ = [
|
|
"__version__",
|
|
"IDNABidiError",
|
|
"IDNAError",
|
|
"InvalidCodepoint",
|
|
"InvalidCodepointContext",
|
|
"alabel",
|
|
"check_bidi",
|
|
"check_hyphen_ok",
|
|
"check_initial_combiner",
|
|
"check_label",
|
|
"check_nfc",
|
|
"decode",
|
|
"encode",
|
|
"intranges_contain",
|
|
"ulabel",
|
|
"uts46_remap",
|
|
"valid_contextj",
|
|
"valid_contexto",
|
|
"valid_label_length",
|
|
"valid_string_length",
|
|
]
|