Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Interface-clean Infobot

by djw (Vicar)
on Jan 16, 2002 at 02:46 UTC ( [id://139071]=note: print w/replies, xml ) Need Help??


in reply to Interface-clean Infobot

I think what you are looking for is Perlbot. It has the modularity you are looking for, and is very well written (in my opinion). I tried Infobot as well as another perl based bot called 'bitchbot' and I still much prefer perlbot. Anyhow, go check the link to see if that is what you need. I beleive they are also looking for developer help in getting botnet support in for perlbot if you are intrested.

djw

Replies are listed 'Best First'.
Re(2): Interface-clean Infobot
by swiftone (Curate) on Jan 16, 2002 at 22:20 UTC
    I hadn't seen this one before, but it's still not what I'm looking for. Perlbot assumes an IRC connection. Perlbot takes control of the program flow. I'm looking for a bot that will passively wait for my program to hand it some data, give me a response to that data, and then return control of the program. Something like:
    use CleanBot; my $cleanbot = CleanBot->new('cleanbot-init.conf'); while($line=<get_data_from_a_source_the_bot_doesn't_care_about>){ my $response = $cleanbot->parse($line); Do_something_the_bot_doesn't_care_about($response) if $response; }
    So the above loop could be used for an IRC connection, a GAIM plugin, even an FTP client if I wanted one with attitude. The bot itself would be persistent during the connection (it could remember data from line to line), and it wouldn't be hard to have it be persistent from invocation to invocation.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://139071]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (4)
As of 2024-04-24 04:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found