<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Some Creativity &#187; Tagyu</title>
	<atom:link href="http://blog.somecreativity.com/category/tagyu/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.somecreativity.com</link>
	<description>Weblog of Siddharth Uppal</description>
	<lastBuildDate>Wed, 25 Jan 2012 11:37:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.somecreativity.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Some Creativity &#187; Tagyu</title>
		<link>http://blog.somecreativity.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.somecreativity.com/osd.xml" title="Some Creativity" />
	<atom:link rel='hub' href='http://blog.somecreativity.com/?pushpress=hub'/>
		<item>
		<title>TagyuLib &#8211; Tagyu .NET Client Library</title>
		<link>http://blog.somecreativity.com/2006/03/25/tagyulib-tagyu-net-client-library/</link>
		<comments>http://blog.somecreativity.com/2006/03/25/tagyulib-tagyu-net-client-library/#comments</comments>
		<pubDate>Sat, 25 Mar 2006 02:13:00 +0000</pubDate>
		<dc:creator>Sid</dc:creator>
				<category><![CDATA[Tagyu]]></category>
		<category><![CDATA[Tech/Hacks]]></category>

		<guid isPermaLink="false">https://siddhu.wordpress.com/2006/03/25/tagyulib-tagyu-net-client-library/</guid>
		<description><![CDATA[I have finished writing a .NET client library for Tagyu&#39;s REST Web-Service. Tagyu is a hosted service that uses human intelligence to suggest tags and categories relevant to a block of text. TagyuLib (that&#8217;s my creative name for the .NET API) supports everything that the REST API of Tagyu allows you to do as of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.somecreativity.com&amp;blog=7388&amp;post=404&amp;subd=siddhu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://static.flickr.com/35/117552482_6c307d2d2d_o.png" /></p>
<p>I have finished writing a .NET client library for Tagyu&#39;s REST Web-Service. <a href="http://www.tagyu.com">Tagyu</a> is a hosted service that uses human intelligence to suggest tags and categories relevant to a block of text.</p>
<p>TagyuLib (that&rsquo;s my creative name for the .NET API) supports everything that the REST API of Tagyu allows you to do as of now. So it supports both classification queries and related-tags queries. It also allows you to pass your username/password to Tagyu through HTTP basic authentication scheme. If you&#39;re wondering what am I talking about here, you should really be reading <a href="http://tagyu.com/tools/rest">Tagyu REST web service documentation</a> first.</p>
<p>I have created a <a href="http://gotdotnet.com/codegallery/codegallery.aspx?id=e9828b2e-b19f-4921-9fde-1b1fc4e694c3">project at GotDotNet CodeGallery</a> to share the source code of TagyuLib and it would be great to see people participate.</p>
<p>I hope some people would find TagyuLib useful and I would love to hear from them. But right now it is 2:15 AM and I need to get some sleep.</p>
<p>Update on March 25, 2006</p>
<p>Here is the class diagram and some sample code to get you started.</p>
<h3>Class Diagram</h3>
<p><a href="http://static.flickr.com/39/122296960_dadfe77269_o.png" title="TagyuLib Class Diagram"></a></p>
<p><a href="http://static.flickr.com/39/122296960_dadfe77269_o.png" title="TagyuLib Class Diagram"><img src="http://static.flickr.com/39/122296960_dadfe77269_o.png" height="228" width="423" /></a></p>
<p>(Click image to enlarge)</p>
<h3>Sample Code</h3>
<p><b>Determining tags and category</b></p>
<p>You need to instantiate a new <i>TagyuService</i> object and simply call its <i>GetClassification</i> method passing-in your text. <i>GetClassification</i> will return you a <i>ClassificationSuggestion</i> object and you can loop through the items in its <i>Tags</i> property to do whatever you want. You can also get the category for your text from the <i>Category</i> property of the <i>ClassificationSuggestion</i> object that you got back.</p>
<pre><code>string inputText = Console.ReadLine();

TagyuService ts = new TagyuService();  

ClassificationSuggestion s = ts.GetClassification(inputText);  

Console.WriteLine(&quot;Suggested Tags are: &quot;);  

foreach (Tag tg in s.Tags) {
    Console.WriteLine(tg.Value);
}  

Console.WriteLine(&quot;Suggested Category is: {0}&quot;, s.Category);</code></pre>
<p><b>Determing related tags</b>That&#39;s equally simple. All you need to do is instantiate a new <i>TagyuService</i> object and call its <i>GetRelatedTags</i> method passing in the tag for which you wish to see related tags. <i>GetRelatedTags</i> returns a <i>RelatedSuggestion</i> object and you can loop through the items in its <i>Tags</i> property.</p>
<pre><code>Console.WriteLine(&quot;Enter a Tag&quot;);

string inputTag = Console.ReadLine();

TagyuService ts = new TagyuService();

RelatedSuggestion r = ts.GetRelatedTags(inputTag);

Console.WriteLine(&quot;Related tags are: &quot;);

foreach (Tag tg in r.Tags) {
      Console.WriteLine(tg.Value);
}</code></pre>
<p><b>Using your Tagyu username and password</b></p>
<p>As of now, unregistered users can make one request per minute from a single IP address to Tagyu and requests beyond this limit result in an error. So if this bothers you, you should <a href="http://tagyu.com/register">create an account at Tagyu</a>. You can pass your username and password to Tagyu through TagyuLib simply by setting these properties on the <i>TagyuService</i> object before invoking <i>GetClassification</i> and <i>GetRelatedTags</i> methods. Here&#39;s how:</p>
<pre><code>string inputText = Console.ReadLine();

TagyuService ts = new TagyuService();
ts.Username = &quot;[YOUR-USERNAME]&quot;;
ts.Password = &quot;[YOUR-PASSWORD]&quot;;  

ClassificationSuggestion s = ts.GetClassification(inputText);    

Console.WriteLine(&quot;Suggested Tags are: &quot;);    

foreach (Tag tg in s.Tags) {
    Console.WriteLine(tg.Value);
}    

Console.WriteLine(&quot;Suggested Category is: {0}&quot;, s.Category);</code></pre>
<h3>Download</h3>
<p><a href="http://gotdotnet.com/codegallery/codegallery.aspx?id=e9828b2e-b19f-4921-9fde-1b1fc4e694c3">This way please</a>!</p>
<h3>Requirements</h3>
<ul>
<li><a href="http://msdn.microsoft.com/netframework/downloads/updates/default.aspx">Microsoft .NET Framework version 2.0.50727 redistributable</a></li>
<li>Visual Studio 2005 (if you wish to build the source-code on your machine without any tinkering)</li>
</ul>
<h3>Bugs/Issues/Feedback</h3>
<p>I&#39;d love to hear from people who&#39;ve used TagyuLib. Please share your feedback, issues  and any bugs you encounter <a href="http://gotdotnet.com/codegallery/messageboard/messageboards.aspx?id=e9828b2e-b19f-4921-9fde-1b1fc4e694c3">here</a>.</p>
<h3>Contributing</h3>
<p>Join <a href="http://gotdotnet.com/codegallery/codegallery.aspx?id=e9828b2e-b19f-4921-9fde-1b1fc4e694c3">the project</a> and get started.</p>
<h3>Changelog</h3>
<ul>
<li>March 25, 2006
<ul>
<li>Initial version</li>
</ul>
</li>
<li>April 02, 2006
<ul>
<li>Merged SuggestedTag and RelatedTag classes into one.</li>
<li>Renamed Suggestions to ClassificationSuggestion.</li>
<li>Renamed Related to RelatedSuggestion.</li>
<li>Added an overload for GetRelatedTags that takes a Tag object as argument.</li>
</ul>
</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/siddhu.wordpress.com/404/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/siddhu.wordpress.com/404/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/siddhu.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/siddhu.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/siddhu.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/siddhu.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/siddhu.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/siddhu.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/siddhu.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/siddhu.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/siddhu.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/siddhu.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/siddhu.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/siddhu.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/siddhu.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/siddhu.wordpress.com/404/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.somecreativity.com&amp;blog=7388&amp;post=404&amp;subd=siddhu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.somecreativity.com/2006/03/25/tagyulib-tagyu-net-client-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f52292ae4f73466f86149f2c94d462a?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">siddhu</media:title>
		</media:content>

		<media:content url="http://static.flickr.com/35/117552482_6c307d2d2d_o.png" medium="image" />

		<media:content url="http://static.flickr.com/39/122296960_dadfe77269_o.png" medium="image" />
	</item>
		<item>
		<title>Tagyu::Search v0.03</title>
		<link>http://blog.somecreativity.com/2005/12/09/tagyusearch-v003/</link>
		<comments>http://blog.somecreativity.com/2005/12/09/tagyusearch-v003/#comments</comments>
		<pubDate>Fri, 09 Dec 2005 11:40:00 +0000</pubDate>
		<dc:creator>Sid</dc:creator>
				<category><![CDATA[Tagyu]]></category>
		<category><![CDATA[Tech/Hacks]]></category>

		<guid isPermaLink="false">https://siddhu.wordpress.com/2005/12/09/tagyusearch-v003/</guid>
		<description><![CDATA[I have incorporated support for two new features in my Tagyu::Search module and learnt a lot about HTTP in the process. 1. Support for HTTP Basic Authentication With this in place, it is now possible for Perl code using my module to break the one request per IP barrier imposed on anonymous users by Tagyu. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.somecreativity.com&amp;blog=7388&amp;post=372&amp;subd=siddhu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://static.flickr.com/33/53995271_a81d3a4a24_o.png" /></p>
<p>I have incorporated support for two new features in <a href="http://upster.blogspot.com/2005/10/tagyu-perl-api.html">my Tagyu::Search module</a> and learnt a lot about HTTP in the process.</p>
<h3>1. Support for HTTP Basic Authentication</h3>
<p>With this in place, it is now possible for Perl code using my module to break the one request per IP barrier imposed on anonymous users by Tagyu. So register yourself at Tagyu <a href="http://tagyu.com/register">right now</a>!</p>
<p>This is what you need to do in your code:<br />
<code></code></p>
<pre># Instantiate a new Tagyu::Search object.
my $tagyu = Tagyu::Search-&gt;new(
 username =&gt; &quot;[YOUR-USERNAME]&quot;,
 password =&gt; &quot;[YOUR-PASSWORD]&quot;
);

# Invoke the SuggesTags method on the Tagyu::Search object.
my @tags = $tagyu-&gt;SuggestTags(&quot;[YOUR-TEXT]&quot;);</pre>
<p>However anonymous searches through Tagyu::Search package are still supported.</p>
<h3>2. Introduced two new methods SuggestTagsText and SuggestTagsURL.</h3>
<p>SuggestTagsText encodes all the special characters like &#39;=&#39;, &#39;+&#39;, &#39;&amp;&#39;, etc. before passing on the text to the Tagyu Web Service, while SuggestTagsURL considers its argument as a URL and uses the Tagyu Web Service to suggest tags for the text at the specified URL.</p>
<p>Download <a href="http://saturn.walagata.com/w/upster/Tagyu-Search-0.03.zip">Tagyu-Search-0.03</a> and let me know how it works for you. As always, feedback is welcome!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/siddhu.wordpress.com/372/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/siddhu.wordpress.com/372/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/siddhu.wordpress.com/372/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/siddhu.wordpress.com/372/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/siddhu.wordpress.com/372/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/siddhu.wordpress.com/372/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/siddhu.wordpress.com/372/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/siddhu.wordpress.com/372/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/siddhu.wordpress.com/372/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/siddhu.wordpress.com/372/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/siddhu.wordpress.com/372/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/siddhu.wordpress.com/372/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/siddhu.wordpress.com/372/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/siddhu.wordpress.com/372/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/siddhu.wordpress.com/372/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/siddhu.wordpress.com/372/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.somecreativity.com&amp;blog=7388&amp;post=372&amp;subd=siddhu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.somecreativity.com/2005/12/09/tagyusearch-v003/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f52292ae4f73466f86149f2c94d462a?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">siddhu</media:title>
		</media:content>

		<media:content url="http://static.flickr.com/33/53995271_a81d3a4a24_o.png" medium="image" />
	</item>
		<item>
		<title>Tagyu Perl API version 0.02</title>
		<link>http://blog.somecreativity.com/2005/11/22/tagyu-perl-api-version-002/</link>
		<comments>http://blog.somecreativity.com/2005/11/22/tagyu-perl-api-version-002/#comments</comments>
		<pubDate>Tue, 22 Nov 2005 22:46:00 +0000</pubDate>
		<dc:creator>Sid</dc:creator>
				<category><![CDATA[Tagyu]]></category>
		<category><![CDATA[Tech/Hacks]]></category>

		<guid isPermaLink="false">https://siddhu.wordpress.com/2005/11/22/tagyu-perl-api-version-002/</guid>
		<description><![CDATA[I have incorporated support in the SuggestTags method of my Tagyu::Search Perl module to allow specifying options to modify its behavior when it contacts Tagyu.com servers. Thanks to Nathan McFarl for his comment. So download Tagyu::Search v0.02 and do let me know how it works for you!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.somecreativity.com&amp;blog=7388&amp;post=362&amp;subd=siddhu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://static.flickr.com/33/53995271_a81d3a4a24_o.png" /></p>
<p>I have incorporated support in the SuggestTags method of <a href="http://upster.blogspot.com/2005/10/tagyu-perl-api.html#comments">my Tagyu::Search Perl module</a> to allow specifying options to modify its behavior when it contacts <a href="http://tagyu.com">Tagyu.com</a> servers. Thanks to <a href="http://blog.nmcfarl.org/">Nathan McFarl</a> for <a href="http://upster.blogspot.com/2005/10/tagyu-perl-api.html#113267539012821787">his comment</a>.</p>
<p>So download <a href="http://saturn.walagata.com/w/upster/Tagyu-Search-0.02.tar.gz">Tagyu::Search v0.02</a> and do let me know how it works for you!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/siddhu.wordpress.com/362/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/siddhu.wordpress.com/362/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/siddhu.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/siddhu.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/siddhu.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/siddhu.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/siddhu.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/siddhu.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/siddhu.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/siddhu.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/siddhu.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/siddhu.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/siddhu.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/siddhu.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/siddhu.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/siddhu.wordpress.com/362/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.somecreativity.com&amp;blog=7388&amp;post=362&amp;subd=siddhu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.somecreativity.com/2005/11/22/tagyu-perl-api-version-002/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f52292ae4f73466f86149f2c94d462a?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">siddhu</media:title>
		</media:content>

		<media:content url="http://static.flickr.com/33/53995271_a81d3a4a24_o.png" medium="image" />
	</item>
		<item>
		<title>Tagyu Perl API</title>
		<link>http://blog.somecreativity.com/2005/10/19/tagyu-perl-api/</link>
		<comments>http://blog.somecreativity.com/2005/10/19/tagyu-perl-api/#comments</comments>
		<pubDate>Wed, 19 Oct 2005 04:01:00 +0000</pubDate>
		<dc:creator>Sid</dc:creator>
				<category><![CDATA[Tagyu]]></category>
		<category><![CDATA[Tech/Hacks]]></category>

		<guid isPermaLink="false">https://siddhu.wordpress.com/2005/10/19/tagyu-perl-api/</guid>
		<description><![CDATA[Introduction Tagyu is a service that can suggest you tags relevant to your content. They have a REST interface available so I quickly rolled up a simple Perl wrapper over it. Simple to use Using Tagyu Web Service from Perl is now very simple and all you need to do is: use Tagyu::Search; my @tags [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.somecreativity.com&amp;blog=7388&amp;post=348&amp;subd=siddhu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://static.flickr.com/33/53995271_a81d3a4a24_o.png" /></p>
<h3>Introduction</h3>
<p><a href="http://tagyu.com/">Tagyu</a> is a service that can suggest you tags relevant to your content. They have a REST interface <a href="http://tagyu.com/tools/rest">available</a> so I quickly rolled up a simple Perl wrapper over it.</p>
<h3>Simple to use</h3>
<p>Using Tagyu Web Service from Perl is now very simple and all you need to do is:<br />
<code></code></p>
<pre>use Tagyu::Search;

my @tags = Tagyu::Search-&gt;SuggestTags(&quot;<i>[PUT YOUR TEXT HERE]</i>&quot;);</pre>
<p><i>SuggestTags</i> method returns an array of strings containing the tags received from Tagyu for the specified text using its REST API.</p>
<h3>Passing options</h3>
<p>You can also specify options to the <code>SuggestTags</code> method of Tagyu::Search module as key-value pairs to modify its behavior when it dispatches requests to the Tagyu.com servers. Here&#39;s an example that sets the timeout parameter.</p>
<p><code></code></p>
<pre>my @tags = Tagyu::Search-&gt;SuggestTags(&quot;<i>[PUT YOUR TEXT HERE]</i>&quot;,
   (timeout =&gt; 600)
);</pre>
<p>Tagyu::Search uses <a href="http://search.cpan.org/%7Egaas/libwww-perl-5.803/lib/LWP/UserAgent.pm">LWP::UserAgent</a> behind the scenes. So for details of all supported options and their default values, please check the documentation of <a href="http://search.cpan.org/%7Egaas/libwww-perl-5.803/lib/LWP/UserAgent.pm#CONSTRUCTOR_METHODS">LWP::UserAgent&#39;s constructor</a>.</p>
<h3>Supports HTTP Basic Authentication</h3>
<p>Tagyu imposes a limit of one request per minute from a single IP address and requests beyond this limit result in an error. However registered users have a soft cap of 1000 requests per day. Tagyu::Search package allows you to pass your username/password to Tagyu in the following manner:<br />
<code> </code></p>
<pre># Instantiate a new Tagyu::Search object.
my $tagyu = Tagyu::Search-&gt;new(
 username =&gt; &quot;<b><i>[YOUR-USERNAME]</i></b>&quot;,
 password =&gt; &quot;<b><i>[YOUR-PASSWORD]</i></b>&quot;
);

# Invoke the SuggestTags method on the Tagyu::Search object.
my @tags = $tagyu-&gt;SuggestTags(&quot;<b><i>[YOUR-TEXT]</i></b>&quot;);</pre>
<p>You can register at Tagyu <a href="http://tagyu.com/register">here</a>.</p>
<h3>Downloads</h3>
<ul>
<li><a href="http://saturn.walagata.com/view.php?file=Tagyu-Search-0.03.zip">Tagyu::Search version 0.03</a> (<a href="http://upster.blogspot.com/2005/12/tagyusearch-v003.html">About</a>)</li>
<li><a href="http://saturn.walagata.com/w/upster/Tagyu-Search-0.02.tar.gz">Tagyu::Search version 0.02</a> (<a href="http://upster.blogspot.com/2005/11/tagyu-perl-api-version-002.html">About</a>)</li>
<li><a href="http://saturn.walagata.com/w/upster/Tagyu-Search-0.01.tar.gz">Tagyu::Search version 0.01</a></li>
</ul>
<h3>Need Ideas?</h3>
<p>For some ideas on what you can do with Tagyu::Search, have a look <a href="http://kalsey.com/2005/10/tagyu_api_ideas/">here</a>.</p>
<h3>Comments and suggestions are welcome</h3>
<p>Before posting my module to <a href="http://www.cpan.org/">CPAN</a> I have sent an RFC for my Perl module on <a href="http://groups.google.com/group/comp.lang.perl.modules/browse_frm/thread/55a1b4e338a286d7">comp.lang.perl.modules</a> USENET group. So download the latest relase of Tagyu::Search and give it a try. Please share your feedback! Thanks.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/siddhu.wordpress.com/348/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/siddhu.wordpress.com/348/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/siddhu.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/siddhu.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/siddhu.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/siddhu.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/siddhu.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/siddhu.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/siddhu.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/siddhu.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/siddhu.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/siddhu.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/siddhu.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/siddhu.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/siddhu.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/siddhu.wordpress.com/348/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.somecreativity.com&amp;blog=7388&amp;post=348&amp;subd=siddhu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.somecreativity.com/2005/10/19/tagyu-perl-api/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f52292ae4f73466f86149f2c94d462a?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">siddhu</media:title>
		</media:content>

		<media:content url="http://static.flickr.com/33/53995271_a81d3a4a24_o.png" medium="image" />
	</item>
	</channel>
</rss>
