pyfilesystem python 通用文件系统抽象
pyfilesystem python 通用文件系统抽象包,对于统一基于文件的数据操作比较方便
目前一些内置的文件系统
- app 文件系统
- ftp 文件系统
- memory 文件
- mount 文件系统
- multi 文件系统
- os 文件系统
- sub 文件系统
- tar 文件系统
- temporary 文件系统
- zip 文件系统
当然还提供了一些其他的比如cloud 的(s3 的)
说明
filesystem_spec 是一个类似的项目,但是重点不太一样,filesystem_spec 偏向于大数据周边,同时进行了不少性能上的提升,基于pyfilesystem 进行文件的操作可以实现一些比较有意思的功能(比如app,sub,os, 等文件文件的能力)对于需要进行复杂文件管理的场景值得使用下,如果是数据分析领域的,推荐还是基于filesystem_spec
参考资料
https://docs.pyfilesystem.org/en/latest/introduction.html
https://github.com/PyFilesystem/pyfilesystem2
https://github.com/fsspec/filesystem_spec