Skip to content

Latest commit

 

History

History
61 lines (46 loc) · 2.38 KB

README.textile

File metadata and controls

61 lines (46 loc) · 2.38 KB

Overview:

Misty is an asynchronous and multiprocessing IRC Bot that aims to be:

  • Easily extendable with user based modules called Isles.
  • Powerful message distribution resembling Django’s URL dispatcher aka Lighthouse.
  • Quick, Friendly, and as non IRC Botty as possible.

Misty was inspired by Phenny,
and DjangoBot.

Coming Soon:

  • Proper logging & searching via Django.
  • Join multiple channels.
  • More Core Isles.
  • Better Lighthouse control.

Requirements:

Installation:

  1. Clone repo in desired directory.
  2. Duplicate and rename Misty/settings.py to settings_local.py
  3. Change Misty/settings_local.py to match your database & IRC server.
  4. Type python Misty/misty_core.py in cmd line to start Misty.

Extending:

  1. Make a IsleName.py in the directory you set with PATH_TO_ISLES in Misty/settings.py
  2. Make sure the IsleName.py has execute permission.
  3. Make sure IsleName.py has #!/usr/bin/env python
  4. Edit Misty/lighthouse.py to include your new Isle.
  5. If Misty is running, reload the list of Isles with {nickname}:reload in IRC

License

Copyright © 2011 Michael Ranieri

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
“Software”), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.