refactor: excel parse

This commit is contained in:
Blizzard
2026-04-16 10:01:11 +08:00
parent 680ecc320f
commit f62f95ec02
7941 changed files with 2899112 additions and 0 deletions
@@ -0,0 +1,57 @@
"""Vectorized vector I/O using OGR."""
try:
# we try importing shapely, to ensure it is imported (and it can load its
# own GEOS copy) before we load GDAL and its linked GEOS
import shapely
if shapely.__version__ < "2.0.0":
import shapely.geos
except Exception:
pass
from pyogrio._version import get_versions
from pyogrio.core import (
__gdal_geos_version__,
__gdal_version__,
__gdal_version_string__,
detect_write_driver,
get_gdal_config_option,
get_gdal_data_path,
list_drivers,
list_layers,
read_bounds,
read_info,
set_gdal_config_options,
vsi_listtree,
vsi_rmtree,
vsi_unlink,
)
from pyogrio.geopandas import read_dataframe, write_dataframe
from pyogrio.raw import open_arrow, read_arrow, write_arrow
__version__ = get_versions()["version"]
del get_versions
__all__ = [
"__gdal_geos_version__",
"__gdal_version__",
"__gdal_version_string__",
"__version__",
"detect_write_driver",
"get_gdal_config_option",
"get_gdal_data_path",
"list_drivers",
"list_layers",
"open_arrow",
"read_arrow",
"read_bounds",
"read_dataframe",
"read_info",
"set_gdal_config_options",
"vsi_listtree",
"vsi_rmtree",
"vsi_unlink",
"write_arrow",
"write_dataframe",
]