v0.3.1
Full Changelog: v0.3.0...v0.3.1
What's Changed
Enhancements to CSVSource:
quipus/data_sources/csv_source.py
:- Updated the
quote_char
method to handleNone
values gracefully. - Modified the
load_data
andget_columns
methods to useencoding.value
instead ofencoding
.
- Updated the
Enhancements to MongoSource:
quipus/data_sources/mongo_source.py
:- Added a check in the
__init__
method to raise aValueError
if neitherdb_config
norconnection_string
is provided.
- Added a check in the
Enhancements to MySQLSource:
quipus/data_sources/mysql_source.py
:- Removed the
connection_string
parameter from the__init__
method and adjusted the initialization to use onlydb_config
.
- Removed the