-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Post tweets from stdin -- -- a Command Line Interface Tweeter @package clit @version 0.1.1.2 -- | Various utilities to tweet using the twitter api -- -- Make sure you have a file credentials file (default `.cred`) with the -- following info: -- -- api-key: API_KEY -- -- api-sec: API_SECRE -- -- tok: OAUTH_TOKEN -- -- tok-sec: TOKEN_SECRET module Web.Tweet -- | tweet a byteString, with credentials from a given file tweet :: FilePath -> ByteString -> IO () -- | Sign a request using your OAuth dev token. Uses the IO monad because -- signatures require a timestamp signRequest :: FilePath -> Request -> IO Request -- | Convert a byteString to the percent-encoded version urlString :: ByteString -> IO String instance GHC.Generics.Generic Web.Tweet.Tweet instance Data.Aeson.Types.Class.ToJSON Web.Tweet.Tweet -- | Provides IO action that parses command line options and tweets from -- stdin module Web.Exec -- | Executes parser exec :: IO ()