Skip to main content

Visual effects for Textual, a TermincalTextEffects wrapper.

Project description

textualeffects

Visual effects for Textual, a TerminalTextEffects wrapper.

Intro

textualeffects is a library that provides Textual bindings for the excellent TerminalTextEffects visual effects library.

Widgets

There are two widgets available in textualeffects, EffectLabel and SplashScreen.

An EffectLabel widget that can be used to display text with a visual effect.

from textual.app import App, ComposeResult

from textualeffects.effects import EffectType
from textualeffects.widgets import EffectLabel

text = ("Hello World! " * 5 + "\n") * 10
effect: EffectType = "Spotlights"
config = {
    "search_duration": 500,
    "spotlight_count": 3,
}


class TextualEffect(App):

    def compose(self) -> ComposeResult:
        label = EffectLabel(text, effect=effect, config=config)
        label.styles.border = ("heavy", "green")
        yield label


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

EffectLabel

A SplashScreen widget that can be used to display a splash screen based on ModalScreen with a visual effect. Once the effect is complete, the splash screen will be dismissed. The user can also dismiss the splash screen by pressing the ESC key.

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

from textualeffects.effects import EffectType
from textualeffects.widgets import SplashScreen

effect: EffectType = "Spotlights"
config = {
    "search_duration": 100,
    "spotlight_count": 3,
}


class SplashEffect(App):

    def on_mount(self) -> None:
        text = ("Hello World! " * 5 + "\n") * 10
        self.push_screen(SplashScreen(text, effect=effect, config=config))

    def compose(self) -> ComposeResult:
        yield TextArea(("Main content" * 5 + "\n") * 10)


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

EffectLabel

Both widgets accept the following arguments:

  • text: The text to display.
  • effect: The visual effect to apply to the text. Available effects are exposed through the EffectType type.
  • config: A dictionary of configuration options for the effect. The available options depend on the effect. Detailed information on the available options can be found in the TerminalTextEffects documentation.

For convenience, when an effect has run its course, the EffectLabel and SplashScreen widgets will emit a EffectLabel.EffectFinished event. You can listen for this event to perform any actions:

    @on(EffectLabel.EffectFinished)
    def do_stuff(self, message: EffectLabel.EffectFinished) -> None:
        ...

License

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

textualeffects-0.2.0.tar.gz (58.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

textualeffects-0.2.0-py3-none-any.whl (5.0 kB view details)

Uploaded Python 3

File details

Details for the file textualeffects-0.2.0.tar.gz.

File metadata

  • Download URL: textualeffects-0.2.0.tar.gz
  • Upload date:
  • Size: 58.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.14

File hashes

Hashes for textualeffects-0.2.0.tar.gz
Algorithm Hash digest
SHA256 e42f3865dbdc815831ae8159c9c39d1dd0789b2dea2bc6f8c15c43e2477e5df1
MD5 ed3b136bdcae184277ed556fb2bcb14d
BLAKE2b-256 cc405d28a460c8b3fb071df67dd0fbf1125b0373d0ef5a9105e6a146bacc530d

See more details on using hashes here.

File details

Details for the file textualeffects-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: textualeffects-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 5.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.14

File hashes

Hashes for textualeffects-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ba7cddc87d60b70b3406b49c1463ea2fe2fec3776bbd764339b4edaee2f1e8e4
MD5 0e06bf928bc25e3e346c268b171f04c1
BLAKE2b-256 ab55a96715300ab7223e0bfeb7fb68edb0fe6cb5f37781c5ff76a9240fcbc09d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page