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,17 @@
"""Dataset paths, identifiers, and filenames
Note well: this module is deprecated in 1.3.0 and will be removed in a
future version.
"""
import warnings
from fiona._path import _ParsedPath as ParsedPath
from fiona._path import _UnparsedPath as UnparsedPath
from fiona._path import _parse_path as parse_path
from fiona._path import _vsi_path as vsi_path
from fiona.errors import FionaDeprecationWarning
warnings.warn(
"fiona.path will be removed in version 2.0.", FionaDeprecationWarning
)