Нема описа http://bits.zero9f9.com/pybot

Matt Weller c75c99cbc8 weather2 update after wunderground api shutdown. proof-of-concept working to openweathermap пре 5 година
.vscode d4b8be68b7 add settings.json (for vscode.. sigh) пре 7 година
docs 3d17959380 docs? пре 9 година
modules c75c99cbc8 weather2 update after wunderground api shutdown. proof-of-concept working to openweathermap пре 5 година
tests 9e1a6deb9f remove all the crazy config loading logic and positional requirements. replaced with argparse. airquotes bugfix release пре 9 година
.gitignore ce5c39e898 some cleanup removing creds from code directly (thx SPHT) пре 8 година
.pylintrc 217adaf0f8 add .pylintrc (with conf to ignore print warnings bcuz python2.7) пре 7 година
.travis.yml 7e612b701c disable irc notifications пре 10 година
CHANGES 129baeca40 add to changes file пре 9 година
README.md 101867cda4 add statement on branch stability to README.md пре 8 година
Vagrantfile 9273160e85 change vagrantfile to use ubuntu/trusty64 пре 9 година
bootstrap.sh 3e44c8e9f9 Automate development environment configuration пре 10 година
bot.py c17880d135 specify python2 пре 6 година
botbrain.py ce5c39e898 some cleanup removing creds from code directly (thx SPHT) пре 8 година
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 пре 12 година
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 пре 10 година
db.py 40ca06cf58 cleanup in db, addition of jury module пре 7 година
event.py 9c33965c09 foo пре 9 година
lite.py f033372635 add ability to run own CREATE TABLE for sqlite пре 9 година
logger.py 71efa36785 cleanup logger and bot's output to it, add logger output to reflect and snippetutil пре 10 година
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. пре 10 година
pybotrc 070c1e86c2 fix testBase and add a test pybotrc (so your local one doesn't fuck up your tests) пре 9 година
requirements.txt 9bfac6efd9 add requirements.txt update to include isodate пре 9 година
run.sh 2b732793c1 fix for youtube v2 api shutdown and an additional kanbo action пре 9 година
setup.sh 0c9bb83b39 add a bit more checking to setup.py, and asking if the user wants to use mysql. also fix the pretty date indenting пре 9 година
stats.py 5951643a37 begin work on stats, i guess, and fix a few typos in webwriter. remove extraneous print from botbrain, too пре 12 година
ubuntu.sh f6de3aaa5e rollback import changes and re-add ubuntu.sh script пре 10 година
util.py 0c9bb83b39 add a bit more checking to setup.py, and asking if the user wants to use mysql. also fix the pretty date indenting пре 9 година
version.py b63f1eaa91 ncrement version slightly since we've had some additional functionality added пре 9 година
webwriter.py 24cef71530 add sqlite functionality. fixes #3, after a long, long time пре 10 година

README.md

Build Status

ReadTheDocs documentation

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

he is modular, extensible, multi-threaded (for network independence!), and configurable.

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

master branch should be stable. feature branches can be broken at any time.

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

Take care of dependencies. If you don't use MySQL and don't care about certain modules breaking, you don't need anything but python 2.7 and standard libs.

sudo pip install -r requirements.txt

  • python-dev
  • libmysqlclient-dev (aka mysql-python in pip)
  • requests (used in a variety of modules)
  • 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