No description
Find a file
Darren Burns cc9e342b40
Sorting
2023-02-07 13:38:21 +00:00
.faq update faq 2023-01-18 19:22:32 +00:00
.github Skip FAQtory on new issues by Textualize members 2023-01-20 15:47:13 +00:00
docs Merge pull request #1710 from Textualize/line-api-docs 2023-02-06 11:42:57 +00:00
examples Remove TreeNode as a pseudo-widget 2023-01-23 17:37:58 +00:00
imgs added demo.svg back for pypi 2022-10-22 21:30:12 +01:00
notes remove useless note 2022-10-22 08:36:52 +01:00
questions update faq 2023-01-18 19:22:32 +00:00
reference Update package metadata and dev experience 2022-11-07 12:02:54 +00:00
src/textual Sorting 2023-02-07 13:38:21 +00:00
tests Testing to ensure the hover coordinate is updated 2023-02-07 11:23:02 +00:00
tools Remove 'action' column from bindings. 2023-01-25 15:00:45 +00:00
.coveragerc Sorting 2023-02-07 13:38:21 +00:00
.gitignore added social cards 2022-11-06 17:53:23 +00:00
.pre-commit-config.yaml run black on tests 2023-01-06 15:32:04 +00:00
CHANGELOG.md Revert Tree.clear and add Tree.reset 2023-02-01 15:08:03 +00:00
CODE_OF_CONDUCT.md Added the Code of Conduct 2022-02-04 23:36:37 +06:00
docs.md Restore the content of docs.md 2022-11-17 15:51:38 +00:00
FAQ.md update faq 2023-01-18 19:22:32 +00:00
faq.yml Added faqtory 2022-12-18 09:50:44 +00:00
hatch.toml Update package metadata and dev experience 2022-11-07 12:02:54 +00:00
LICENSE Initial commit 2021-04-08 16:24:48 +01:00
Makefile Added blog 2022-11-06 15:41:12 +00:00
mkdocs.yml more docs and diagrams 2023-02-03 19:10:03 +01:00
mypy.ini mypy ini 2021-07-05 20:48:00 +01:00
poetry.lock docs examples and diagrams 2023-02-03 11:23:14 +01:00
pyproject.toml Merge pull request #1710 from Textualize/line-api-docs 2023-02-06 11:42:57 +00:00
README.md Fix broken links in README.md 2022-10-23 19:32:50 +03:00

Textual

Textual splash image

Textual is a Python framework for creating interactive applications that run in your terminal.

🎬 Demonstration

A quick run through of some Textual features.

https://user-images.githubusercontent.com/554369/197355913-65d3c125-493d-4c05-a590-5311f16c40ff.mov

About

Textual adds interactivity to Rich with a Python API inspired by modern web development.

On modern terminal software (installed by default on most systems), Textual apps can use 16.7 million colors with mouse support and smooth flicker-free animation. A powerful layout engine and re-usable components makes it possible to build apps that rival the desktop and web experience.

Compatibility

Textual runs on Linux, macOS, and Windows. Textual requires Python 3.7 or above.

Installing

Install Textual via pip:

pip install "textual[dev]"

The addition of [dev] installs Textual development tools. See the docs if you need help getting started.

Demo

Run the following command to see a little of what Textual can do:

python -m textual

Textual demo

Documentation

Head over to the Textual documentation to start building!

Examples

The Textual repository comes with a number of examples you can experiment with or use as a template for your own projects.

🎬 Code browser

This is the code_browser.py example which clocks in at 61 lines (including docstrings and blank lines).

https://user-images.githubusercontent.com/554369/197188237-88d3f7e4-4e5f-40b5-b996-c47b19ee2f49.mov

📷 Calculator

This is calculator.py which demonstrates Textual grid layouts.

calculator screenshot

🎬 Stopwatch

This is the Stopwatch example from the tutorial.

https://user-images.githubusercontent.com/554369/197360718-0c834ef5-6285-4d37-85cf-23eed4aa56c5.mov

Reference commands

The textual command has a few sub-commands to preview Textual styles.

🎬 Easing reference

This is the easing reference which demonstrates the easing parameter on animation, with both movement and opacity. You can run it with the following command:

textual easing

https://user-images.githubusercontent.com/554369/196157100-352852a6-2b09-4dc8-a888-55b53570aff9.mov

🎬 Borders reference

This is the borders reference which demonstrates some of the borders styles in Textual. You can run it with the following command:

textual borders

https://user-images.githubusercontent.com/554369/196158235-4b45fb78-053d-4fd5-b285-e09b4f1c67a8.mov

🎬 Colors reference

This is a reference for Textual's color design system.

textual colors

https://user-images.githubusercontent.com/554369/197357417-2d407aac-8969-44d3-8250-eea45df79d57.mov