aoc-2022/venv/Lib/site-packages/pandas/api/interchange/__init__.py

9 lines
230 B
Python
Raw Normal View History

"""
Public API for DataFrame interchange protocol.
"""
from pandas.core.interchange.dataframe_protocol import DataFrame
from pandas.core.interchange.from_dataframe import from_dataframe
__all__ = ["from_dataframe", "DataFrame"]