irc icon indicating copy to clipboard operation
irc copied to clipboard

Full-featured Python IRC library for Python.

Results 38 irc issues
Sort by recently updated
recently updated
newest added

The test suite seems to have started failing: ```pytb $ tox -e py310 .pkg-cpython310: install_requires> python -I -m pip install 'setuptools>=56' 'setuptools_scm[toml]>=3.4.1' .pkg-cpython310: _optional_hooks> python /usr/lib/python3.11/site-packages/pyproject_api/_backend.py True setuptools.build_meta .pkg-cpython310: get_requires_for_build_editable>...

Sometimes, mostly around the 500MB mark, the DCC transfers seem to get stuck at `connection.send_bytes(struct.pack("!I", self.received_bytes))` The previous package is received and then execution just stops at the above function....

Otherwise it would be installed as site-packages/docs/..., which is not correct. Fixes #231

``` $ unzip -l /tmp/irc-20.4.1-py3-none-any.whl Archive: /tmp/irc-20.4.1-py3-none-any.whl Length Date Time Name --------- ---------- ----- ---- 1757 06-09-2024 00:43 docs/conf.py 78 06-09-2024 00:43 docs/history.rst 314 06-09-2024 00:43 docs/index.rst 1788 06-09-2024 00:43...

I am currently writing an irc client based on the SimpleIRCClient. How can I use the connect function's sasl_login parameter to successfully utilize SASL? I am trying to utilize it...

I'm not sure if this is an issue as much of a question, its entirely possible I'm doing something wrong. But lets say i write an event handler on_privmsg with...

When a quit occurs and there is no quit message len(arguments) is 0 (arguments is an empty list) and so this line in _handle_other "arguments = [arguments[0]]" causes an "IndexError"....