https://github.com/jamiew/famo-cli
Quickly lookup Internet stats, the currency of the now
https://github.com/jamiew/famo-cli
Last synced: over 1 year ago
JSON representation
Quickly lookup Internet stats, the currency of the now
- Host: GitHub
- URL: https://github.com/jamiew/famo-cli
- Owner: jamiew
- Created: 2012-09-21T23:03:38.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2013-01-25T19:12:13.000Z (over 13 years ago)
- Last Synced: 2025-03-28T19:48:50.446Z (over 1 year ago)
- Language: Ruby
- Size: 129 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
famo2
=====
Semi-standardized interface for querying Internet fame stats, the true currency of the web.
**This is a work-in-progress, and very little works (yet)**
Modules
-------
Google Analytics resource (e.g. jamiedubs.com) provides:
* visits
* goal conversions
* eventually: geo, demographics, traffic sources, referrals, search keywords
Twitter resource (e.g. @jamiew) provides:
* follower stats
* repy/retweet stats
Usage
-----
Time defaults to the last 30 days (?) and returns a Hash like:
```javascript
{
total: { visits: 5, conversions: 1 },
data: { 2011_05_01: { visits: 2, conversions: 0}, 2011_05_02: { ...}, ... }
}
```
```ruby
> famo = Famo.new
> famo.info('jamiedubs.com', time: 30.days)
=> { ... }
```