Skip to content

Commit 8d05ee8

Browse files
authored
init python package for API spec (#93)
1 parent 6012add commit 8d05ee8

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
"""
2+
Function stubs and API documentation for the DataFrame API standard.
3+
"""
4+
5+
__dataframe_api_version__: str = "YYYY.MM"
6+
"""
7+
String representing the version of the DataFrame API specification to which the
8+
conforming implementation adheres.
9+
"""
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
__all__ = ["DataFrame"]
2+
3+
4+
class DataFrame:
5+
pass

0 commit comments

Comments
 (0)