rss
logo

I provide consulting and custom development for Natural Language Processing, Information Extraction and Search solutions.Self Picture


 learn more   get in touch 

Logo - I Build Search
Jun 26
2004

Auto-tagging of TagBoards digg

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/perl
# AutoTagger-Perl v0.1a (June 26, 2004)
# Pravin [pravinp at gmail dot com]
# This snippet illustrates automatic tagging of
# http://www.tag-board.com tag boards
 
use HTTP::Request::Common;
use LWP::UserAgent;
 
# Enter your details here
my $myname = 'pravin';
my $myurl = 'http://pravin.insanitybegins.com';
my $mymessage = 'Test Message';
 
# Add taggy names to this list
my @taggylist = (
	'oh_its_dee',
	'me_reiya',
	'Vighy',
	'rrighton');
 
# Code Starts
$ua = LWP::UserAgent->new();
foreach (@taggylist)
{
	print '$_\\t';
	$ua->request(POST 'http://www.tag-board.com/add.tag',
		[name => $_,
		tagname => $myname,
		tagurl =>$myurl,
		message => $mymessage]);
	print 'done\\n';
}

25 Responses (rss) (trackback)

#1

rogotenin

July 6th, 2007 at 1:32 pm

Hello

I am Lucy, I have found your website while searching for some info at Google. Your site has helped me in a big way.

Bye

#2

EUN

April 25th, 2009 at 6:09 am

could you email me on how can i do a auto tagging software ?

#3

ba0beix33

May 1st, 2009 at 6:33 am

Hi erm.. can eu teach me how to do a auto tagging software??

#4

ardour

May 6th, 2009 at 4:14 am

Hi I’m also interested in the auto tagging software. Could you by any chance teach me too?

#5

ardour

May 6th, 2009 at 4:22 am

Hi(: Could you teach me how to make the auto tagging software too? Thank you (:

#6

Carrie

May 10th, 2009 at 10:52 pm

Hi, can you teach me how ot make the auto tagging software?
would really appreciate it
thank you :D

#7

linda

May 12th, 2009 at 3:46 am

Hellos, please teach me how to do a auto tagging software too. (:

Thanks alot!

#8

WEILING

May 14th, 2009 at 9:02 pm

hey there . would u mind teaching me more about auto tagging and btw whats the software you using for this tagging service (:

#9

WEILING

May 14th, 2009 at 9:04 pm

hey there . would you mind teaching me more about this auto tagging and btw whats the software you using for this tagging service (:

#10

Rachel

May 18th, 2009 at 4:20 am

Hellos, can you teach me how to make an auto tagging software?

#11

Rachel

May 18th, 2009 at 9:35 pm

Hope you will reply me asap.

#12

KORUIN

May 20th, 2009 at 1:16 am

hey, do email me regarding this software, i’ll really appreciate it. .thanks you & god bless

#13

XJ

June 9th, 2009 at 8:46 am

Hi,
can you teach how to make the auto tagging software.
Or where can i get it.
pls mail me.thx

#14

Celine

June 11th, 2009 at 4:13 am

Hey! Thanks for these codes. But how ya gonna use these codes? Those who know, mind mailing me?

#15

Vee

June 17th, 2009 at 8:53 am

Hi! Can you teach me how to use these codes? Will be a really great help thanks (:

#16

Wendy

August 5th, 2009 at 12:26 am

Hi, could you email me the steps to make this script work? Thanks!

#17

June

August 13th, 2009 at 9:13 am

Heys! Can u teach me how to use these codes? Thanks

#18

h

September 5th, 2009 at 12:58 pm

Hey, possible to mail me about auto tagging service? and what system u are using? thanks (:

#19

Jiaqi

October 7th, 2009 at 1:17 pm

Hi, can you send me the software?? I needed it urgently.

#20

Vio

October 12th, 2009 at 1:51 pm

Hey, would you meaning sending me instructions on how to do up this software? Will really appreciate your help! Thanks! :]

#21

joelle

November 13th, 2009 at 6:23 am

hi there (: just searched on yahoo and i found your page. Is it possible for you to teach me about auto-taggng system & how to use the code you given ? (: would really appreciate it ^^

#22

meredith

December 17th, 2009 at 3:39 am

hey there, can you kindly please teach all of us how to do auto tagging on others cbox tag board???thanks lots :)

#23

Janny

December 19th, 2009 at 5:36 am

Hey,may i know how to use the code?

#24

deziree

December 19th, 2009 at 3:14 pm

Hi,
Is it possible for you to also teach me about auto-tagging system and the usage of the code given??

Thanks a lot, would greatly appreciate it.

#25

Yi Yin

February 24th, 2010 at 9:54 pm

Hi, will you please teach me how to use this code? Please e-mail me at shoppingpls@hotmail.com Thank you very much! :)

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="">

Latest Articles

Feb
19

Join a list of integers in Python

How do you run a string join on a list of integers in Python? After googling for about 10 mins, I gave up and did this. I am sure there is a better way of doing it! [Read More]
Jan
21

Writing a spider in 10 mins using Scrapy

I came across Scrapy a few days back and have grown to really love it. This tutorial will illustrate how you can write a simple spider using Scrapy to scrape data off Paul Smith. All this in 10 minutes. [Read More]

Featured Projects

NLP classes for PHP

NLP classes for PHP

This is an ongoing project to develop a set of classes for Natural Language Processing. Some code would be ported from the NLTK project.

[Read More]

Yahoo Messenger Client for *nix

Yahoo Messenger Client for *nix

Yux is an alternative Yahoo Messenger client for *nix systems that attempts to match the look and feel of the original Windows client.

[Read More]

This page and its contents are copyright © 2010, Pravin Paratey.