Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/remeh/wcie
What Can I Eat - Twitter search queries analyzer in Golang
https://github.com/remeh/wcie
Last synced: about 1 month ago
JSON representation
What Can I Eat - Twitter search queries analyzer in Golang
- Host: GitHub
- URL: https://github.com/remeh/wcie
- Owner: remeh
- License: apache-2.0
- Created: 2014-10-16T18:56:29.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-27T21:17:46.000Z (about 10 years ago)
- Last Synced: 2024-10-12T22:30:40.180Z (2 months ago)
- Language: Go
- Homepage:
- Size: 234 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# What Can I Eat
WCIE is a basic side-project with just a few hours used for its development.
Its purpose is to gather tweets using some search queries on the Twitter API, after having stored them into MongoDB, its storage model allows to do aggregation on tweets wrote during a given interval of time. This storage model is used to "discover" the next word to the search query in order to basically analyze what people are used to eat every day.
The results will obviously be approximative, precision isn't the purpose of this project.WCIE is licensed with the Apache License 2.0, don't hesitate to send ideas, issues or anything.
## Usage
```
-d="wcie": The DB name to use in MongoDB.
-k="": The twitter apikey to use for queries on Twitter.
-m="localhost": The Mongo URI to connect to MongoDB.
-s="": The twitter secret use as a password on Twitter to identify this app.
-t="": The access token to query Twitter.
-ts="": The access token secret to query Twitter.
```## Roadmap
* Compute percentage of each words per days, weeks, months, ...
* HTTP route to display (with D3.js ?) some charts.## Dependencies
```
github.com/ChimeraCoder/anaconda
gopkg.in/v2/mgo
```