@@ -807,19 +807,19 @@ def select(
807
807
----------
808
808
key : str
809
809
Object being retrieved from file.
810
- where : list, default None
810
+ where : list or None
811
811
List of Term (or convertible) objects, optional.
812
- start : int, default None
812
+ start : int or None
813
813
Row number to start selection.
814
814
stop : int, default None
815
815
Row number to stop selection.
816
- columns : list, default None
816
+ columns : list or None
817
817
A list of columns that if not None, will limit the return columns.
818
- iterator : bool, default False
818
+ iterator : bool or False
819
819
Returns an iterator.
820
- chunksize : int, default None
820
+ chunksize : int or None
821
821
Number or rows to include in iteration, return an iterator.
822
- auto_close : bool, default False
822
+ auto_close : bool or False
823
823
Should automatically close the store when finished.
824
824
825
825
Returns
@@ -1083,11 +1083,10 @@ def put(
1083
1083
worse but allow more flexible operations like searching / selecting
1084
1084
subsets of the data.
1085
1085
append : bool, default False
1086
- This will force Table format, append the input data to the
1087
- existing.
1086
+ This will force Table format, append the input data to the existing.
1088
1087
data_columns : list, default None
1089
- List of columns to create as data columns, or True to
1090
- use all columns. See `here
1088
+ List of columns to create as data columns, or True to use all columns.
1089
+ See `here
1091
1090
<https://pandas.pydata.org/pandas-docs/stable/user_guide/io.html#query-via-data-columns>`__.
1092
1091
encoding : str, default None
1093
1092
Provide an encoding for strings.
0 commit comments