Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
Michael Murtaugh 368f0dccbb updated parody bot pirms 3 gadiem
pipebot new pipebot things pirms 4 gadiem
.gitignore new pipebot things pirms 4 gadiem
1_peter_rabbit.txt updated parody bot pirms 3 gadiem
README.md new pipebot things pirms 4 gadiem
ircbot.ipynb simple irc bot notebook pirms 4 gadiem
ircpipebot.py gulp pirms 4 gadiem
parody-bot.ipynb updated parody bot pirms 3 gadiem
reversebot.py gulp pirms 4 gadiem
simplebot.py gulp pirms 4 gadiem

README.md

A small selection of IRC bots

simplebot.py is a really minimal bot (meant as a proof of concept and starting point) written in standard library python 3. The source is from IRC Hacks, Paul Mutton, 2004.

ircpipebot and reversebot make use of the irc module, installable with:

pip3 install irc

Pipebot

Testing

python -u ircpipebot.py | python -u pipebot/echo_split.py

Closing the loop

mkfifo pipe.fifo
cat pipe.fifo | python -u ircpipebot.py > pipe.fifo


cat pipe.fifo | python -u ircpipebot.py | python -u pipebot/echo_split.py > pipe.fifo

or

cat pipe.fifo | \
python -u ircpipebot.py | \
python -u pipebot/echo_split.py \
> pipe.fifo