Aucune description http://bits.zero9f9.com/pybot

Matt Weller 0ec2cb24b2 ADDITIONAL FUNCTIONALITY. TANK U KANBO il y a 9 ans
docs a9c3442525 rename functions intended to be used by class callers from with underscores to without, so sphinx docs catches them il y a 10 ans
modules 0ec2cb24b2 ADDITIONAL FUNCTIONALITY. TANK U KANBO il y a 9 ans
tests e4b7c7291c add test load modules to tests il y a 10 ans
.gitignore 5c323a799f add *.db to gitignore il y a 10 ans
.travis.yml 7e612b701c disable irc notifications il y a 10 ans
CHANGES 5341af6dbd update CHANGES and version.py il y a 10 ans
Makefile 5341af6dbd update CHANGES and version.py il y a 10 ans
README.md 08928f9bb8 fix up readme a tiny bit il y a 10 ans
Vagrantfile 3e44c8e9f9 Automate development environment configuration il y a 10 ans
bootstrap.sh 3e44c8e9f9 Automate development environment configuration il y a 10 ans
bot.py 71efa36785 cleanup logger and bot's output to it, add logger output to reflect and snippetutil il y a 10 ans
botbrain.py 23eb0cdf92 remove uptime code from botbrain and put it entirely into the uptime module where it should be. also fix bitbucket links now that theyre not doing CNAMEs any more il y a 9 ans
conf.py a9c3442525 rename functions intended to be used by class callers from with underscores to without, so sphinx docs catches them il y a 10 ans
conferror.py 9945b98ebd create dev branch. work on confman, which is currently correctly parsing ~/.pybotrc and setting internal variables. add some try excepts on connecting to the socket il y a 12 ans
confman.py b4c0a16948 fix bug where bot would try to connect to __pybot_conf and fail to pull values for that network from teh conf il y a 10 ans
db.py 5c85d92c03 wat il y a 9 ans
event.py 5ecdfb1562 add mode definition to event.py. il y a 10 ans
index.rst 23eb0cdf92 remove uptime code from botbrain and put it entirely into the uptime module where it should be. also fix bitbucket links now that theyre not doing CNAMEs any more il y a 9 ans
lite.py a9c3442525 rename functions intended to be used by class callers from with underscores to without, so sphinx docs catches them il y a 10 ans
logger.py 71efa36785 cleanup logger and bot's output to it, add logger output to reflect and snippetutil il y a 10 ans
mysql_dump 85fac2f4d4 fix debug log output in bot.py, fix poor programming in nicklist (still not fully functional), fix mysql_dump missing a few tables. il y a 10 ans
pybotrc 24cef71530 add sqlite functionality. fixes #3, after a long, long time il y a 10 ans
requirements.txt 9bfac6efd9 add requirements.txt update to include isodate il y a 9 ans
run.sh 2b732793c1 fix for youtube v2 api shutdown and an additional kanbo action il y a 9 ans
setup.sh 3d1a70facb add setup.sh and modify README to tell people to use it il y a 11 ans
stats.py 5951643a37 begin work on stats, i guess, and fix a few typos in webwriter. remove extraneous print from botbrain, too il y a 12 ans
ubuntu.sh f6de3aaa5e rollback import changes and re-add ubuntu.sh script il y a 10 ans
util.py 065e982eab working on reload function for snippets il y a 10 ans
version.py 08653ba0ce fix bug in youtu.be shortened urls that include a ?t= at the end, and fix time parsing (includes new dependency on isodate :() il y a 9 ans
webwriter.py 24cef71530 add sqlite functionality. fixes #3, after a long, long time il y a 10 ans

README.md

Build Status

ReadTheDocs documentation

pybot is a python irc bot. he is a project.

he is modular, extensible, multi-threaded, and configurable.

pybot runs on python 2.6 and 2.7, on both windows and linux. python versions > 3 are in the works.

(Now probably more than) 10-second TL;DR:

Take care of dependencies. If you don't use MySQL and don't care about twitter posting or reddit info, you don't need anything but python 2.6 or 2.7 and standard libs.

  • libmysqlclient-dev (aka mysql-python in pip)
  • requests
  • praw (for reddit info module)
  • mysql-python (if you do use mysql)
  • sphinx (for docs)
  • python-twitter (twitterposter)

Local Development (with sqlite3)

  1. Copy pybotrc to the user who will run the bot (you can probably do cp pybotrc ~/.pybotrc)
  2. Modify ~/.pybotrc with your network, owner, and nickname.
  3. ./bot.py
  4. laugh at mysql guys.
  5. continue laughing.
  6. for debugging purposes, ./bot.py -d.

Local Development (with MySQL)

  1. modify pybotrc with your channels and passwords.
  2. run sudo ./bootstrap.sh to install pybot dependencies such as mysql.
  3. run ./setup.sh. It will check for module dependencies and create a mysql_init file. mysql -p < mysql_init
  4. ./bot.py pybotrc
  5. rejoice.
  6. for debugging purposes, ./bot.py -d.

Manual

Add a mysql user for pybot with permissions to update, insert, and delete from the created tables. Logged into mysql: grant all on <dbname>.* to '<username>' identified by '<password>';


Run the included mysql_dump file (as root, mysql -p <pybot's database name> < mysql_dump). Set his dbpass in the config file (pybotrc) to the password you've given him. Copy that config file to the home folder of whatever user will be running the bot. (~user/.pybotrc) As that user, ./bot.py.

Vagrant Development

If you have Vagrant locally installed and configured, you can set up pybot by invoking vagrant up. Your development environment will be configured, and you can skip step 1 and 2 above. After that, SSH into your VM and do steps 3 through 5 to finish things off.

Images & Explanation

debug mode

Here pybot is connected to two networks at once. They are held entirely separately. Modules loaded on one are independent of modules loaded on another. If one server goes down, the other connections to other networks are unaffected.

youtube module

a totally not contrived example