| Short description: |
TAGGY Search API for Ruby |
| Category: |
Library/Net |
| Status: |
alpha |
| Created: |
2007-05-18 08:35:05 GMT |
| Last update: |
2007-06-05 06:22:24 GMT |
| Owner: |
MoonWolf
(Projects of this owner) |
| Homepage: |
not available |
| Download: |
http://www.moonwolf.com/ruby/archive/net-taggy-0.0.20070605.tar.gz
|
| License: |
Ruby's |
| Dependency: |
|
| Description: |
Net::TAGGY - TAGGY Search API(http://taggy.jp/)
===========================================================
REQUIRE
-------
* JSON implementation for Ruby
INSTALL
-------
$ su
# setup.rb
USAGE
-----
require 'net/taggy'
result = Net::TAGGY::search(:query => ARGV, :media=> 'photo', :limit => 50)
p result[:count]
result[:entry].each {|e|
p e.identifier # => "10000000"
p e.media # => "photo"
p e.title # => "kitten",
p e.link # => #<URI::HTTP:0xfdb84a1e2 URL:http://taggy.jp/user/article/detail.do?media=photo&id=10000000>
p e.description # => ""
p e.date # => #<Date: 4908473/2,0,2299161>
p e.creator # => "MoonWolf"
p e.relation # => #<URI::HTTP:0xfdb849954 URL:http://csa.so-net.ne.jp/so-net/::>,
p e.subjects # => ["迪ォ", "蟆丞虚迚ゥ", "蜍慕黄"]>
}
|
| Versions: |
[0.0.20070605 (2007-06-05)]
[0.0.20070518 (2007-05-18)]
|