Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
Michael Murtaugh 368f0dccbb updated parody bot il y a 4 ans
pipebot new pipebot things il y a 4 ans
.gitignore new pipebot things il y a 4 ans
1_peter_rabbit.txt updated parody bot il y a 4 ans
README.md new pipebot things il y a 4 ans
ircbot.ipynb simple irc bot notebook il y a 4 ans
ircpipebot.py gulp il y a 4 ans
parody-bot.ipynb updated parody bot il y a 4 ans
reversebot.py gulp il y a 4 ans
simplebot.py gulp il y a 4 ans

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