google-drive alternatives and similar packages
Based on the "Unclassified" category.
Alternatively, view google-drive alternatives based on common mentions on social networks and blogs.
-
gotta-go-fast
A command line utility for practicing typing and measuring your WPM and accuracy. -
heroku-persistent
Parse DATABASE_URL into configuration types for Persistent -
bit-stream
Lazy infinite compact streams with cache-friendly O(1) indexing and applications for memoization -
ascii-art-to-unicode
Small program to convert ASCII box art to Unicode box drawings. -
rollbar-cli
A group of libraries written in Haskell to communicate with Rollbar API. -
base-unicode-symbols
Unicode alternatives for common functions and operators -
hackertyper
"Hack" like a programmer in movies and games! Inspired by hackertyper.net -
aeson-serialize
Functions for serializing a type that is an instance of ToJSON -
dependent-sum-template
Template Haskell code to generate instances of classes in dependent-sum package -
argon2
Haskell bindings to libargon2 - the reference implementation of the Argon2 password-hashing function -
servant-streaming
Support for servant requests and responses via the 'streaming' library -
webkit-javascriptcore
webkit javascriptcore library FFI -
rerebase
Reexports from "base" with a bunch of other standard libraries -
containers-unicode-symbols
Unicode alternatives for common functions and operators -
semver-range
Implementation of semver and NPM-style semantic version ranges in Haskell -
postgresql-simple-sop
Generic functions for postgresql-simple -
hasql-dynamic-statements
Dynamic statements for Hasql -
network-carbon
A Haskell implementation of the Carbon protocol (part of the Graphite monitoring tools) -
qq-literals
A Haskell library for compile-time checked literal values, via QuasiQuoters.
Updating dependencies is time-consuming.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of google-drive or a related project?
README
Google Drive
Google Drive API access
Stability
As we are still pre-1.0, I consider all types and interfaces freely changeable in any way accompanied by only a minor version bump.
I apologize if this breaks your code. Update at your own risk.
Installation
% cabal install google-drive
Usage
-- Top level re-exports all the sub-modules
import Network.Google.Drive
import Control.Monad (forM_)
import Data.Conduit (($$+-))
main :: IO ()
main = do
-- See my separate google-oauth2 library
let token = undefined
-- runApi would return an Either ApiError a
-- runApi_ discards the a and raises any errors, useful in CLI apps
runApi_ token $ do
-- "root" is an alias for the ID of the Drive itself
Just root <- getFile "root"
-- Note: This is already available as listVisibleContents
items <- listFiles $ (fileId root) `qIn` Parents ?&& Trashed ?= False
forM_ items $ \item -> do
let path = localPath item
downloadFile item ($$+- sinkFile path)
See the tests and haddocks for more information.
Developing and Tests
% cp .env{.example,} # and edit it accordingly
% cabal install --dependencies-only --enable-tests -j
% cabal test