11 lines
256 B
Python
11 lines
256 B
Python
"""
|
|
Module containing the implementation of the Python dataframe interchange protocol.
|
|
|
|
Details on the protocol:
|
|
https://data-apis.org/dataframe-protocol/latest/index.html
|
|
"""
|
|
|
|
from polars.interchange.protocol import CompatLevel
|
|
|
|
__all__ = ["CompatLevel"]
|