twitter-conduit alternatives and similar packages
Based on the "Conduit" category.
Alternatively, view twitter-conduit alternatives based on common mentions on social networks and blogs.
-
pool-conduit
Persistence interface for Haskell allowing multiple storage methods. -
http-conduit
An HTTP client engine, intended as a base layer for more user-friendly packages. -
conduit-combinators
Type classes for mapping, folding, and traversing monomorphic containers -
csv-conduit
Flexible, fast and constant-space CSV library for Haskell using conduits -
hreq-conduit
A type dependent highlevel HTTP client library inspired by servant-client. -
simple-conduit
A simple streaming I/O library based on monadic folds -
conduit-audio
Use conduit to process/manipulate/convert audio -
crypto-conduit
Conduit interface for cryptographic operations (from crypto-api). -
http-conduit-browser
Browser interface to the http-conduit package -
imagesize-conduit
Conduit sink to efficiently determine image dimensions -
fsnotify-conduit
Get filesystem notifications as a stream of events -
rss-conduit
Streaming parser/renderer for the RSS 2.0 standard. -
udp-conduit
[DONE] Simple fire-and-forget style conduit parts (sources/sinks) for UDP traffic -
cryptohash-conduit
Simple conduit function for cryptohash -
hw-conduit-merges
Additional merge / join combinators for Conduit -
jsonrpc-conduit
Library for building JSON-RPC 2.0 servers. -
conduit-concurrent-map
Concurrent, order-preserving mapping Conduit for Haskell -
conduit-tokenize-attoparsec
Conduits for tokenizing streams. -
conduit-network-stream
A base layer for network protocols with Conduits -
ascii85-conduit
Conduit for encoding ByteString into Ascii85
Static code analysis for 29 languages.
* 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 twitter-conduit or a related project?
README
twitter-conduit: An Conduit based Twitter API library for Haskell
About
This is an conduit based Twitter API library for Haskell, including Streaming API supports.
Documentation is available in hackage.
Usage
$ cabal update
$ cabal install twitter-conduit
Quick Start
For a runnable example, see sample/simple.hs. You can find other various examples in sample directory.
Run Samples
Build
If you would like to use cabal sandbox, prepare sandbox as below:
$ cabal sandbox init
and then,
$ cabal install --only-dependencies -fbuild-samples
$ cabal configure -fbuild-samples
$ cabal build
Run
First, you must obtain consumer key and secret from Twitter Application Management page, and you have to set those values to environment variables as shown below:
$ export OAUTH_CONSUMER_KEY="YOUR APPLICATION CONSUMER KEY"
$ export OAUTH_CONSUMER_SECRET="YOUR APPLICATION CONSUMER SECRET"
Before you run examples, you must prepare OAuth access token and secret. You can obtain access token and secret by using either PIN or web callback.
If you would like to use the PIN method, you run simply as below, and follow instructions:
$ cabal run oauth_pin
On the other hand, If you would like to use the callback method, do as follows:
$ cabal run oauth_callback
and open http://localhost:3000/signIn in your browser.
In both cases, you can obtain OAUTH_ACCESS_TOKEN
and OAUTH_ACCESS_SECRET
variables,
then you should set those values to environment variables as shown below:
$ export OAUTH_ACCESS_TOKEN="YOUR ACCESS TOKEN"
$ export OAUTH_ACCESS_SECRET="YOUR ACCESS SECRET"
Finally, you can access Twitter UserStream as follows:
$ cabal run userstream
Examples
TODO
Authors and Credits
twitter-conduit
initially was written by Takahiro Himura.
We would like to thank everyone who supported and contributed to the development of this library.