rich_interactive
Extends the Rich library with interactive layouts and tables, allowing seamless navigation and interaction via keyboard shortcuts
File Explorer
- extensions.json
- settings.json
- future_plans_live_demo_poc.gif
- interactive_layout.png
- interactive_table.png
- scrollable_panel.png
- scrollable_table.png
- __init__.py
- interactive.py
- interactive_layout.py
- interactive_panel.py
- interactive_table.py
- __init__.py
- conftest.py
- test_interactive_layout.py
- test_interactive_panel.py
- test_interactive_table.py
- test_table.py
- utils.py
- .gitignore
- .pre-commit-config.yaml
- LICENSE
- poetry.lock
- pyproject.toml
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
poetry add
View Details ▼
poetry add
Add required packages to the `pyproject.toml` file in Poetry.
See also: `asdf`.
poetry add {{package_name}}
Add required packages:
poetry add {{package_name}} --group {{group_name}}
Add required packages to a specific group of dependencies:
poetry add {{package_name}}=={{version}}
Add a specific version of a package:
