sclack
sclack copied to clipboard
The best CLI client for Slack, because everything is terrible!
This change adds some very basic thread support to the application: - If a message in a channel has replies, show the number of messages in the thread - Pressing...
I followed the build instrucitons and used the pip3 install, but when I launch app.py, I get this ``` $ ./app.py Traceback (most recent call last): File "./app.py", line 14,...
I'm on MacOS with python 3.9 in a `venv`, I followed the instructions, installed `sclack` with `./setup.py install` (which was missing from the docs) and followed all the steps with...
Hi, https://slack.com/oauth/authorize?client_id=[Client ID here]&scope=client Here scope 'client' is deprecated. Any workaround?
Hello, I'm trying to run Sclack on a Python 3.x env and it just breaks on app init  Software setup: Python ``` ▶ python3 -V Python 3.8.5 ``` Pip...
Python 3.4 added the asyncio module into the standard library, but starting with 3.5 we can make use of the "async def" style syntax. Python 3.8 deprecated the current decorator...
Since [the @asyncio.coroutine decorator will be removed in Python 3.10](https://docs.python.org/3/library/asyncio-task.html#asyncio.coroutine), this PR changes the decorator definitions into the new `async def`/`await` syntax, also removing warnings about the deprecated API.
I use [pipx](https://pipxproject.github.io/pipx/) to manage Python executables on my system and would like to use it to install Sclack. I tried running the following command in Pipx: `pipx install --include-deps...
iTerm2 has extended the xterm protocol to support embedding images in the terminal. This seems like a great use in sclack if supported, instead of ANSI/VT100 rendering. https://www.iterm2.com/documentation-images.html
Support graceful exiting of the application when CNTRL+C is applied