Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sheet_utils refactor to add csv functionality (C4-1088) #276

Open
wants to merge 17 commits into
base: kmp_sheet_utils
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,22 @@ Change Log

* New module ``sheet_utils`` for loading workbooks.

* class ``WorkbookManager`` for loading raw data
* Important things of interest:

* class ``ItemManager`` for loading item data
* Class ``ItemManager`` for loading Item-style data
from any ``.xlsx``, ``.csv`` or ``.tsv`` files.

* Function ``load_items`` that does the same as ``ItemManager.load``.

* Various low-level implementation classes such as:

* Classes ``XlsxManager``, ``CsvManager`` and ``TsvManager`` for loading raw data
from ``.xlsx``, ``.csv``, and ``.tsv`` files, respectively.

* Classes ``ItemXlsxManager``, ``ItemCsvManager``, and ``ItemTsvManager`` for loading Item-style data
from ``.xlsx``, ``.csv``, and ``.tsv`` files, respectively.

* Contains a fix for a bug in ``ff_utils.get_schema_names`` (`C4-1086 <https://hms-dbmi.atlassian.net/browse/C4-1086>`_).


7.8.0
Expand Down
Loading
Loading