first commit

This commit is contained in:
Ayxan
2022-05-23 00:16:32 +04:00
commit d660f2a4ca
24786 changed files with 4428337 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
from .core import (
infer_vegalite_type,
infer_encoding_types,
sanitize_dataframe,
parse_shorthand,
use_signature,
update_subtraits,
update_nested,
display_traceback,
SchemaBase,
Undefined,
)
from .html import spec_to_html
from .plugin_registry import PluginRegistry
from .deprecation import AltairDeprecationWarning
__all__ = (
"infer_vegalite_type",
"infer_encoding_types",
"sanitize_dataframe",
"spec_to_html",
"parse_shorthand",
"use_signature",
"update_subtraits",
"update_nested",
"display_traceback",
"AltairDeprecationWarning",
"SchemaBase",
"Undefined",
"PluginRegistry",
)