Skip to content

Commit 18f0e77

Browse files
committed
removed LHDFStore from api.rst file and __init__.py module
1 parent f88090a commit 18f0e77

File tree

3 files changed

+5
-24
lines changed

3 files changed

+5
-24
lines changed

doc/source/api.rst

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -706,24 +706,6 @@ ReportSheet
706706
ReportSheet.add_graphs
707707
ReportSheet.newline
708708

709-
HDF
710-
===
711-
712-
.. autosummary::
713-
:toctree: _generated/
714-
715-
LHDFStore
716-
717-
.. autosummary::
718-
:toctree: _generated/
719-
720-
LHDFStore.filename
721-
LHDFStore.is_open
722-
LHDFStore.keys
723-
LHDFStore.items
724-
LHDFStore.summary
725-
LHDFStore.close
726-
727709

728710
.. _api-misc:
729711

larray/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from larray.inout.pandas import from_frame, from_series
2727
from larray.inout.csv import read_csv, read_tsv, read_eurostat
2828
from larray.inout.excel import read_excel
29-
from larray.inout.hdf import read_hdf, LHDFStore
29+
from larray.inout.hdf import read_hdf
3030
from larray.inout.sas import read_sas
3131
from larray.inout.stata import read_stata
3232
from larray.inout.xw_excel import open_excel, Workbook
@@ -78,7 +78,6 @@
7878
'from_lists', 'from_string', 'from_frame', 'from_series', 'read_csv', 'read_tsv',
7979
'read_eurostat', 'read_excel', 'read_hdf', 'read_sas', 'read_stata',
8080
'open_excel', 'Workbook', 'ExcelReport', 'ReportSheet',
81-
'LHDFStore',
8281
# utils
8382
'get_options', 'set_options',
8483
# viewer

larray/inout/hdf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -360,12 +360,12 @@ class LHDFStore(object):
360360
``'r+'``
361361
It is similar to ``'a'``, but the file must already exist.
362362
complevel : int, 0-9, default None
363-
Specifies a compression level for data.
364-
A value of 0 disables compression.
363+
Specifies a compression level for data.
364+
A value of 0 disables compression.
365365
complib : {'zlib', 'lzo', 'bzip2', 'blosc'}, default 'zlib'
366-
Specifies the compression library to be used.
366+
Specifies the compression library to be used.
367367
fletcher32 : bool, default False
368-
If applying compression use the fletcher32 checksum
368+
If applying compression use the fletcher32 checksum
369369
engine: {'auto', 'tables', 'pandas'}, optional
370370
Load using `engine`. Use 'pandas' to read an HDF file generated with a LArray version previous to 0.31.
371371
Defaults to 'auto' (use default engine if you don't know the LArray version used to produced the HDF file).

0 commit comments

Comments
 (0)