issues
search
petl-developers
/
petl
Python Extract Transform and Load Tables of Data
MIT License
1.25k
stars
193
forks
source link
Maintanability: Remove deprecated io classes
#607
Open
juarezr
opened
2 years ago
juarezr
commented
2 years ago
Context
After #494 landed in
v1.6.0
,
petl
started using
fsspec
for handling read and writing from/to remote servers and cloud filesystems.
Before there were some classes for dealing with compression and SMB.
But with
fsspec
they become duplicated code.
We have these choices for this code:
Remove it and require
fsspec
for this functionality
Make it private and use it as a fallback when one does not want to add a dependency to
fsspec
. So one need to make it clear in docs.
Context
petl
started using fsspec for handling read and writing from/to remote servers and cloud filesystems.fsspec
they become duplicated code.fsspec
for this functionalityfsspec
. So one need to make it clear in docs.