https://github.com/cgoldberg/py-ircbot
simple IRC bot in Python
https://github.com/cgoldberg/py-ircbot
Last synced: about 1 month ago
JSON representation
simple IRC bot in Python
- Host: GitHub
- URL: https://github.com/cgoldberg/py-ircbot
- Owner: cgoldberg
- License: gpl-3.0
- Created: 2013-08-11T20:43:40.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-08-12T23:08:15.000Z (about 12 years ago)
- Last Synced: 2025-06-01T21:00:44.559Z (4 months ago)
- Language: Python
- Size: 160 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
py-ircbot
=========simple IRC bot in Python
------------------------* https://github.com/cgoldberg/py-ircbot
* Corey Goldberg, , 2013license:
--------* GNU GPLv3
requirements:
-------------* Python 2.7+/3.2+
* `irc` package:* PyPI: https://pypi.python.org/pypi/irc
* Development: https://bitbucket.org/jaraco/irc* `mock` package (for testing only):
* PyPI: https://pypi.python.org/pypi/mock
* Development: http://www.voidspace.org.uk/python/mockUsage:
------`ircbot.py` is invoked with the following 4 positional arguments:
* server
* port
* channel
* nicknamefor example: to join the `#python` channel on Freenode using the nickname "mybot" ::
$ python ircbot.py irc.freenode.net 8000 python mybot
Note: you don't need to prepend a "#" to the channel name. If you do, you
must either escape the character or put the entire argument in quotes::$ python ircbot.py irc.freenode.net 8000 \#python mybot
$ python ircbot.py irc.freenode.net 8000 "#python" mybot