Jakob Ackermann

Results 133 comments of Jakob Ackermann

The SlackRTM plugin is definitely the better pick. _But it is fairly outdated too and still using custom threads - which do not play nice with the asyncio event loop...

You are looking for a message handler, which is called when ever the bot received a message. To add a custom handler, run `plugins.register_handler(my_handler)` - were `my_handler` is a coroutine...

@ryanpeach Your script may live in the `hangupsbot/plugins` folder. The scriptname could be added into the `"plugins"` list in your config (or just specify `"plugins": null` to load all plugins)....

@fizux Awesome! Could you adjust the title of pull request please? the scope has slightly changed :)

@phoerious does this issue also exist when running the bot in a terminal? Can you provide a terminal and log output of a complete run on level info? This should...

The ``aiohttp.ClientSession`` messages are introduced in aiohttp version 2.2, running ``$ /path/to/venv/bin/pip3 install --upgrade aiohttp==2.1`` should fix this. Can you please run the bot again and use ``... --log log...

20 threads are peanuts for your system and so far the maximum I saw when using ``asyncio`` and ``aiohttp`` in concurrent calls. Running the [1mio requests with aiohttp](http://www.artificialworlds.net/blog/2017/06/12/making-100-million-requests-with-python-aiohttp/) script spawns...

I missed the last comment somehow. Does this issue also exist when using python version 3.5.x? I am running a custom version based on v3.0 and python 3.5.3. Having a...

I am not aware of a function to control the threads spawned by ``asyncio`` from inside a single event loop. I wrote a [tester](https://gist.github.com/das7pad/f2ae50e60a5ca2d6b8a371645deb5549) which fetches async resources split in...

Oh, I forgot to update the part before the try block. https://gist.github.com/das7pad/f2ae50e60a5ca2d6b8a371645deb5549/7abd567253eb8a0178bcdef5d8a43f2661a400f5