From 6dace3683dd14f04b4ce0034ef2e9557dc883a10 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 27 Dec 2023 09:55:06 +0000 Subject: [PATCH] Re-generated documentation --- docs/fastexcel.html | 72 +++++++++++++++++++++++++++++++++++---------- 1 file changed, 56 insertions(+), 16 deletions(-) diff --git a/docs/fastexcel.html b/docs/fastexcel.html index ee11f13..8e523c8 100644 --- a/docs/fastexcel.html +++ b/docs/fastexcel.html @@ -3,7 +3,7 @@ - + fastexcel API documentation @@ -430,13 +430,21 @@

-
+ +
sheet_names: list[str] - + +
- +
73    @property
+74    def sheet_names(self) -> list[str]:
+75        """The list of sheet names"""
+76        return self._reader.sheet_names
+
+ +

The list of sheet names

@@ -706,52 +714,84 @@
Parameters
-
+ +
name: str - + +
- +
20    @property
+21    def name(self) -> str:
+22        """The name of the sheet"""
+23        return self._sheet.name
+
+ +

The name of the sheet

-
+ +
width: int - + +
- +
25    @property
+26    def width(self) -> int:
+27        """The sheet's width"""
+28        return self._sheet.width
+
+ +

The sheet's width

-
+ +
height: int - + +
- +
30    @property
+31    def height(self) -> int:
+32        """The sheet's height, with `skip_rows` and `nrows` applied"""
+33        return self._sheet.height
+
+ +

The sheet's height, with skip_rows and nrows applied

-
+ +
total_height: int - + +
- +
35    @property
+36    def total_height(self) -> int:
+37        """The sheet's total height"""
+38        return self._sheet.total_height
+
+ +

The sheet's total height