pydle icon indicating copy to clipboard operation
pydle copied to clipboard

An IRCv3-compliant Python 3 IRC library.

Results 29 pydle issues
Sort by recently updated
recently updated
newest added

Pydle complains about a 501 numeric response (meaning unknown mode) being unknown, it should probably be ignored.

Running the example with `pydle.ClientPool` in the README throws a ValueError: ``` Traceback (most recent call last): File "bot.py", line 14, in pool.connect(client, 'irc.rizon.net', 6697, tls=True, tls_verify=False) File "/usr/local/lib/python3.5/dist-packages/pydle/client.py", line...

I am interested in accessing the tags of private messages. Currently I do this in the following fashion: ``` python class PrivMessageTagSupport(pydle.features.ircv3.TaggedMessageSupport): def on_raw_privmsg(self, message): """ PRIVMSG command. """ nick,...

Currently, members of `self.users` are primarily only destroyed when Pydle or the user in question leaves a channel. However, there are numerous events that call `_sync_user`, which will create the...

Currently, pydle's flood model is very limited in its possibilites: - It follows a burst -> delay -> burst -> delay model, which is not how IRC servers expect to...

The value of `ISUPPORT.MODES` is optional, indicating that there is no limit on a single MODE command. See: https://datatracker.ietf.org/doc/html/draft-hardy-irc-isupport-00#section-4.12 In my case, it is connect to [ergo irc server](https://ergo.chat/about-network).

When trying to send a long message that includes UTF-8 characters, pydle messages consistently truncate the end of the message rather than splitting it into two. For instance, when I...

hi, i use pydle and i had to do this change to use it on recent python versions. i think this could be useful to integrate into the pip library....

## Description I'm encountering a `TypeError` in the `pydle` library when running my IRC bot. The error occurs because the `_create_user` method, which is synchronous, is being called with `await`...