Unified Scala interface based on fs2 for hierarhical and flat object stores. This library lets you integrate fs2 programs with various storage technologies such as S3, GCS, Azure Blob Storage, SFTP and Box. It also offers an interface that abstracts over the underlying storage technology, this lets you write fs2 programs that are agnostic to what storage provider files are hosted on.
Quick Start
The latest version is 0.9.6, published for Scala 2.12/13/1
libraryDependencies ++= Seq(
"com.github.fs2-blobstore" %% "core" % "0.9.6",
"com.github.fs2-blobstore" %% "sftp" % "0.9.6",
"com.github.fs2-blobstore" %% "s3" % "0.9.6",
"com.github.fs2-blobstore" %% "gcs" % "0.9.6",
"com.github.fs2-blobstore" %% "azure" % "0.9.6",
"com.github.fs2-blobstore" %% "box" % "0.9.6",
)
coremodule has minimal dependencies and only providesFileStoreimplementation.sftpmodule providesSftpStoreand depends on Jsch client.s3module providesS3Storeand depends on AWS S3 SDK V2gcsmodule providesGcsStoreand depends on Google Cloud Storage SDKazuremodule providesAzureStoreand depends on Azure Storage SDK Client library for Javaboxmodule providesBoxStoreand depends on the Box SDK for Java
See the documentation for how to use