hs-twitter: Haskell binding to the Twitter API

[ bsd3, library, web ] [ Propose Tags ]

The hs-twitter API binding lets you access twitter.com's resources and methods from Haskell.

Implements the full API, see http://apiwiki.twitter.com/REST+API+Documentation

For more info on use, please visit http://haskell.forkIO.com/twitter


[Skip to Readme]

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.2.5, 0.2.6, 0.2.7, 0.2.8
Dependencies base (<4.6), HTTP (>=4000.0.1 && <4000.4), json (<0.10), mime (<0.4), network (<2.6), old-locale (<1.1), old-time (<1.2), random (<1.2), utf8-string (<1.1) [details]
License BSD-3-Clause
Author Sigbjorn Finne
Maintainer Sigbjorn Finne <sof@forkio.com>
Revised Revision 1 made by HerbertValerioRiedel at 2019-03-12T10:06:47Z
Category Web
Uploaded by SigbjornFinne at 2009-01-01T20:52:11Z
Distributions
Reverse Dependencies 2 direct, 0 indirect [details]
Downloads 7653 total (26 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for hs-twitter-0.2.3

[back to package description]
= hs-twitter - Programming Twitter from Haskell =

'hs-twitter' is a Haskell package providing a binding to
the Twitter API - 

  http://twitter.com/
  http://apiwiki.twitter.com/REST+API+Documentation

The binding is functionally complete (Christmas 2008), letting you write
applications in Haskell that accesses Twitter streams and updates your
own.

For more info on use, please visit: http://haskell.forkIO.com/twitter

= Getting started =

For some code samples showing you how to get started using this
API binding, have a look at Web/Twitter.hs at the top.

= Building and installing =

This package is provided in Cabal form, so only thing you need to
do to get going is:

  foo% runghc Setup configure --user  # that option being optional
  foo% runghc Setup build 
  foo% runghc Setup install

(or, if you are versed in its ways, "cabal update ; cabal install twitter")

The package depends on a bunch of other packages though, so you
need to have them built&installed, as well. They are:

  * HTTP: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/HTTP
  * json:  http://hackage.haskell.org/cgi-bin/hackage-scripts/package/json
  * utf8-string: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/utf8-string
  * mime: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/mime

('cabal install' will take care of chasing these down for you, btw..)

= Authentication =

When using this API binding to build your own Twitter applications,
authentication is required ...

= Feedback / question =

Please send them to sof@forkIO.com , and I'll try to respond to them
as best/quickly as possible. (Or, try to send a tweet 'sigbjorn_finne' :-) )

Enjoy..