Pydantic wrappers of fsspec types
This library contains Pydantic validators for fsspec.
FileSystem = Annotated[AbstractFileSystem, FSSpecFilesystemType]: Annotation for filesystem classFilePath = Annotated[Path, FSSpecPathType(path_type="file")]: Annotation for a fileDirectoryPath = Annotated[Path, FSSpecPathType(path_type="dir")]: Annotation for a directory
This library can be used to include fsspec types in other Pydantic models.
Note
This library was generated using copier from the Base Python Project Template repository.