Twircle is a Clojure Geolocated Sentiment Analysis command line application
- Displaying tweets containing the word "football"
- Hint: twitter also lets you filter based on tweet's geolocation:
- https://dev.twitter.com/docs/streaming-apis/parameters#locations
- Categorize tweets based on keywords look for certain keywords in every tweet received (e.g. "happy", "sad", "mad", "stoked", "wtf") and use that information to categorize each tweet. Print out the category of each tweet in the filtered stream (e.g. "happy tweet", "sad tweet", "unknown tweet").
- (optional): Plug in a real sentiment analyzer use a "real" sentiment analysis library (which could be a clojure library or another JVM language) to categorize incoming tweets.
- Produce a rolling average of sentiment for a geolocation.
- Figure out a cunning way to roll up the sentiment analysis of individual tweets into an aggregate score for an entire stream of tweets. Use that to report the general mood of San Francisco.
- Analyze different places simultaneously Keep track of several streams simultanously, and use them to categorize the mood of multiple locales.
- Hint: twitter doesn't let you consume multiple distinct streams concurrently, so you'll have to multiplex your queries into one super-stream and then demux them as you bring them in for processing.
- Pull in a list of teams currently playing from some API somewhere and use that to decide what geolocated tweet streams to process.
- Use Clojurescript to display geolocated tweets on a google map in a web page.
1.0.0-SNAPSHOT