gitextract_ta9rwfzc/ ├── .gitignore ├── Discline.py ├── LICENSE ├── README.md ├── client/ │ ├── channellog.py │ ├── client.py │ ├── on_message.py │ └── serverlog.py ├── commands/ │ ├── channel_jump.py │ ├── sendfile.py │ └── text_emoticons.py ├── input/ │ ├── input_handler.py │ ├── kbhit.py │ └── typing_handler.py ├── res/ │ ├── scripts/ │ │ └── discline │ └── settings-skeleton.yaml ├── ui/ │ ├── line.py │ ├── text_manipulation.py │ ├── ui.py │ ├── ui_curses.py │ └── ui_utils.py └── utils/ ├── globals.py ├── hidecursor.py ├── print_utils/ │ ├── channellist.py │ ├── emojis.py │ ├── help.py │ ├── print_utils.py │ ├── serverlist.py │ └── userlist.py ├── quicksort.py ├── settings.py ├── token_utils.py └── updates.py