diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,5 @@
+# snappy-lazy
+
+## 0.1.0.0
+
+Initial release
diff --git a/LICENSE b/LICENSE
new file mode 100644
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,11 @@
+Copyright Vanessa McHale (c) 2020
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/README.md b/README.md
new file mode 100644
--- /dev/null
+++ b/README.md
@@ -0,0 +1,5 @@
+# snappy-lazy
+
+Snappy frames (see
+[snappy-framing](http://hackage.haskell.org/package/snappy-framing)) with
+a high-level bytestring API.
diff --git a/snappy-lazy.cabal b/snappy-lazy.cabal
new file mode 100644
--- /dev/null
+++ b/snappy-lazy.cabal
@@ -0,0 +1,43 @@
+cabal-version:   1.18
+name:            snappy-lazy
+version:         0.1.0.0
+license:         BSD3
+license-file:    LICENSE
+copyright:       Copyright: (c) 2020 Vanessa McHale
+maintainer:      vamchale@gmail.com
+author:          Vanessa McHale
+synopsis:        Lazy bytestring compression and decompression
+description:
+    Higher-level wrapper for streaming snappy decompression via ByteString
+
+category:        Codec, Compression
+build-type:      Simple
+extra-doc-files:
+    README.md
+    CHANGELOG.md
+
+library
+    exposed-modules:  Codec.Compression.Snappy.BSL
+    hs-source-dirs:   src
+    default-language: Haskell2010
+    ghc-options:      -Wall
+    build-depends:
+        base >=4.9 && <5,
+        bytestring -any,
+        binary -any,
+        snappy -any,
+        snappy-framing -any
+
+    if impl(ghc >=8.0)
+        ghc-options:
+            -Wincomplete-uni-patterns -Wincomplete-record-updates
+            -Wredundant-constraints -Widentities
+
+    if impl(ghc >=8.4)
+        ghc-options: -Wmissing-export-lists
+
+    if impl(ghc >=8.2)
+        ghc-options: -Wcpp-undef
+
+    if impl(ghc >=8.10)
+        ghc-options: -Wunused-packages
diff --git a/src/Codec/Compression/Snappy/BSL.hs b/src/Codec/Compression/Snappy/BSL.hs
new file mode 100644
--- /dev/null
+++ b/src/Codec/Compression/Snappy/BSL.hs
@@ -0,0 +1,39 @@
+-- | Snappy frames; see
+-- [here](http://hackage.haskell.org/package/snappy-framing) for more on the
+-- frame format.
+module Codec.Compression.Snappy.BSL ( compress
+                                    , decompress
+                                    ) where
+
+import qualified Codec.Compression.Snappy         as Snappy
+import qualified Codec.Compression.Snappy.Framing as Snappy
+import           Data.Binary                      (decodeOrFail, encode)
+import qualified Data.ByteString.Lazy             as BSL
+import           Data.Semigroup                   ((<>))
+
+-- | Throws exception on error.
+decompress :: BSL.ByteString -> BSL.ByteString
+decompress = BSL.fromChunks . loop
+    where loop bs =
+            let (res, _, chunk) = asE $ decodeOrFail bs
+                in if BSL.null res
+                    then [extractUncompressed chunk]
+                    else extractUncompressed chunk : loop res
+          asE = either (error.show) id
+          extractUncompressed (Snappy.Compressed _ d)   = Snappy.decompress d
+          extractUncompressed (Snappy.Uncompressed _ x) = x
+          extractUncompressed Snappy.StreamIdentifier   = mempty
+          extractUncompressed Snappy.Skippable{}        = mempty
+          extractUncompressed _                         = error "Expected Uncompressed{}, Skippable{} or StreamIdentifier; possible corrupt stream"
+
+compress :: BSL.ByteString -> BSL.ByteString
+compress = (Snappy.streamIdentifier <>) . loop
+    where loop bsl =
+            let (chunk, res) = Snappy.encode bsl
+                in case res of
+                    Just x  -> extractCompressed chunk <> loop x
+                    Nothing -> extractCompressed chunk
+          extractCompressed c@Snappy.Compressed{}   = encode c
+          extractCompressed c@Snappy.Uncompressed{} = encode c
+          -- see: http://hackage.haskell.org/package/snappy-framing-0.1.2/docs/Codec-Compression-Snappy-Framing.html#v:encode
+          extractCompressed _                       = error "Expected Compressed{}; possible corrupt stream"
