Skip to main content

textual-cogs

Framework: Textual

A collection of Textual dialogs.

textual_cogs_demo_0 0 5

Dialogs included so far:

  • Generic MessageDialog - shows messages to the user
  • OpenFileDialog - gives the user a way to select a file to open
  • QuitDialog - ask the user if they want to quit the application
  • SaveFileDialog - gives the user a way to select a location to save a file
  • SingleChoiceDialog - gives the user a series of choices to pick from
  • SingleColorPickerDialog - gives the user a way to select a color
  • TextEntryDialog - ask the user a question and get their answer using an Input widget

Installation

You can install textual-cog using pip:

python -m pip install textual-cogs

You also need Textual to run these dialogs.

Example Usage

Here is an example of creating a small application that opens the MessageDialog immediately. You would normally open the dialog in response to a message or event that has occurred, such as when the application has an error or you need to tell the user something.

from textual.app import App
from textual.app import App, ComposeResult

from textual_cogs.dialogs import MessageDialog
from textual_cogs import icons


class DialogApp(App):
    def on_mount(self) -> ComposeResult:
        def my_callback(value: None | bool) -> None:
            self.exit()

        self.push_screen(
            MessageDialog(
                "What is your favorite language?",
                icon=icons.ICON_QUESTION,
                title="Warning",
            ),
            my_callback,
        )


if __name__ == "__main__":
    app = DialogApp()
    app.run()

When you run this code, you will get something like the following:

screenshot

Creating a TextEntryDialog

Here is how you would create a TextEntryDialog:

from textual.app import App
from textual.app import App, ComposeResult

from textual_cogs.dialogs import TextEntryDialog


class DialogApp(App):
    def on_mount(self) -> ComposeResult:
        def my_callback(value: str | bool) -> None:
            self.exit()

        self.push_screen(
            TextEntryDialog("What is your name?", "Information"), my_callback
        )


if __name__ == "__main__":
    app = DialogApp()
    app.run()

When you run this code, you will see the following:

screenshot

Creating a SaveFileDialog

The following code demonstrates how to create a SaveFileDialog:

from textual.app import App
from textual.app import App, ComposeResult

from textual_cogs.dialogs import SaveFileDialog


class DialogApp(App):
    def on_mount(self) -> ComposeResult:
        self.push_screen(SaveFileDialog())

if __name__ == "__main__":
    app = DialogApp()
    app.run()

When you run this code, you will see the following:

image

Release files for textual-cogs 0.0.5

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for textual-cogs 0.0.5
File Size Uploaded
textual_cogs-0.0.5.tar.gz 10.3 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for textual-cogs 0.0.5
File Interpreter ABI Platform
textual_cogs-0.0.5-py3-none-any.whl Python 3 none any Details

Total release size: 24.8 kB

Release files / textual_cogs-0.0.5.tar.gz

Download URL textual_cogs-0.0.5.tar.gz
Size 10.3 kB
Tags Source
SHA-256 checksum
How to use checksums
af8420ea07874ba019e1b419d0dbd3a5ee2d0df186958ccdf2930d2a41b18e13
BLAKE2b-256 checksum
How to use checksums
6b5050a0f97d3c47b79376642d8dda34a4e33e7cefdc6a77a52ea0418720f9c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release files / textual_cogs-0.0.5-py3-none-any.whl

Download URL textual_cogs-0.0.5-py3-none-any.whl
Size 14.5 kB
Tags Python 3
SHA-256 checksum
How to use checksums
d082af0f6731c3147682420d628789dba638aed8bdb3fef584eb191c0bad9950
BLAKE2b-256 checksum
How to use checksums
fe5ee3908b451860bf40cf12e34340a2e975a1e6dc77ec37737d44cc53c296ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.3

Release history Release notifications | RSS feed

This release

0.0.5 This release

2 release files

0.0.4

2 release files

0.0.3

2 release files

0.0.2

2 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page