Skip to content

Commit

Permalink
docs: tweak header_row and skip_rows description (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
deanm0000 authored Jul 19, 2024
1 parent 226cc48 commit 7a7bd67
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/fastexcel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,13 @@ def load_sheet(
:param idx_or_name: The index (starting at 0) or the name of the sheet to load.
:param header_row: The index of the row containing the column labels, default index is 0.
If `None`, the sheet does not have any column labels.
Any rows before the `header_row` will be automatically skipped.
:param column_names: Overrides headers found in the document.
If `column_names` is used, `header_row` will be ignored.
:param n_rows: Specifies how many rows should be loaded.
If `None`, all rows are loaded
:param skip_rows: Specifies how many rows should be skipped after the header.
:param skip_rows: Specifies how many rows should be skipped after the `header_row`.
Any rows before the `header_row` are automatically skipped.
If `header_row` is `None`, it skips the number of rows from the
start of the sheet.
:param schema_sample_rows: Specifies how many rows should be used to determine
Expand Down

0 comments on commit 7a7bd67

Please sign in to comment.