https://github.com/mdp/twitter_getter
A simple ruby gem for accessing the Twitter API
https://github.com/mdp/twitter_getter
Last synced: 6 months ago
JSON representation
A simple ruby gem for accessing the Twitter API
- Host: GitHub
- URL: https://github.com/mdp/twitter_getter
- Owner: mdp
- Created: 2009-06-02T15:12:51.000Z (about 17 years ago)
- Default Branch: master
- Last Pushed: 2009-07-09T21:10:39.000Z (almost 17 years ago)
- Last Synced: 2025-01-23T12:14:52.237Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 85.9 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
# TwitterGetter - A simple Twitter API gem
## Installation
sudo gem install markpercival-twitter_getter --sources http://gems.github.com
## Usage
@tg = TwitterGetter::Base.new('ev', 'password')
tweets = @tg.search('failwhale')
tweets.each do |t|
p "#{t.from_user}: #{t.text}"
end
@tg.follow('aplusk')
## License
This code is free to use under the terms of the MIT license.
## Contact
Mark Percival