Go to file
mutantmonkey f39902f30c Drop Python 3.4 support for now
The asyncore module included with Python 3.4 has regressed and since
even Debian stable is shipping Python 3.5 now, I don't see a reason to
keep support around anymore.

Upstream bug: https://bugs.python.org/issue13103
2018-03-23 20:27:22 -07:00
modules Merge pull request #78 from vtluug/fix_weather 2018-03-24 03:15:55 +00:00
opt Port to python3, fix ssl support 2011-09-22 14:17:27 -04:00
test metar: handle edge case for pressure parsing 2013-06-12 18:31:12 -07:00
.gitignore add .gitignore 2012-03-28 19:34:17 -04:00
.travis.yml Drop Python 3.4 support for now 2018-03-23 20:27:22 -07:00
README.md Python 3.4+ is now required 2017-04-09 23:15:25 -07:00
__init__.py Clean up core and add support for TLS client certs 2017-04-09 22:58:04 -07:00
bot.py Add Event Wildcard * 2012-12-16 17:39:28 -05:00
icao.py icao: remove EDDI (closed Berlin-Tempelhof airport) 2013-01-15 23:16:04 -05:00
irc.py undo split messages 2017-12-27 03:07:48 -05:00
metar.py improvements to weather module 2013-08-24 18:45:05 -07:00
phenny Clean up core and add support for TLS client certs 2017-04-09 22:58:04 -07:00
requirements.txt Added .posted (local version) 2014-04-06 19:35:14 -04:00
tools.py fix imdb, search, and various tests 2017-02-11 06:25:25 +00:00
web.py switch to requests for HTTP queries 2013-06-08 22:27:24 -07:00
wiki.py Add " to unescape function in wiki.py 2017-02-21 19:45:50 +00:00

README.md

phenny

Build Status

This is phenny, a Python IRC bot. Originally written by Sean B. Palmer, it has been ported to Python3.

This version comes with many new modules, IPv6 support, TLS support, and unit tests.

Compatibility with existing phenny modules has been mostly retained, but they will need to be updated to run on Python3 if they do not already. All of the core modules have been ported, removed, or replaced.

Requirements

Installation

  1. Run ./phenny - this creates a default config file
  2. Edit ~/.phenny/default.py
  3. Run ./phenny - this now runs phenny with your settings

Enjoy!

Testing

You will need the Python3 versions of python-nose and python-mock. To run the tests, simply run nosetests3.

Authors