Skip to content

API Reference / APIリファレンス

The API reference is generated from the Google-style docstrings of the public symbols exported by Wandas. The top-level wandas.__all__ is the primary stable entry surface; module pages expose the corresponding module exports.

WandasのAPIリファレンスは、公開symbolのGoogle style docstringから生成されます。 最上位のwandas.__all__が主要な安定公開面で、各モジュールのページは対応するexportを 公開します。

wandas.supported_formats()

Return file extensions supported by the registered readers.

Source code in wandas/__init__.py
53
54
55
56
57
def supported_formats() -> list[str]:
    """Return file extensions supported by the registered readers."""
    from .io.readers import supported_formats as _supported_formats

    return _supported_formats()

The tutorials and how-to guides cover workflows that combine several APIs. The learning path is for executable, task-oriented examples.