Corrections to README.
- Reference Issue #2
- The
to_dict
method no longer throws an error if an unreckognized table is found; it now just ignores the table. - Added
FINTMPL
to table_data. - Updated
to_csv
method:- Can now pass a list of table names to export to CSV. For example pass in agrument
table_names=["TASK", "PROJWBS"]
to only export the task and wbs tables to CSV. - Can now change the delimeter. For example, pass in argument
delimeter=","
to use a coma rather than the default tab.
- Can now pass a list of table names to export to CSV. For example pass in agrument
- The
Clean up code.
Patched potential errors when transformming from a string to a float. Some languages use a comma rather than a period in floating point numbers. Issue #1
Added to_excel
function. Export the tables in the .xer file to individual spreadsheets in a .xlsx file.
- Added docstrings for attributes.
- Fixed typo in README.
Access to Table
class.
General code clean up.
- Added
currency
attribute pulled from ERMHDR values. - Added
get_table_names
method. - Added
has_table
method. - Added
parse_tables
method. Replaces thetables
attribute.
- Removed
tables
attribute. The tables are now returned in theparse_tables
method.
Fixed typo in README example.
Initial version.