Slash commands and autocompletions
Project description
Slashed
A Python library for implementing slash commands with rich autocompletion support.
Features
- Simple command registration system
- Rich autocompletion support with multiple providers
- Type-safe command and context handling:
- Generic typing for context data
- Type-checked command parameters
- Safe data access patterns
- Built-in completers for:
- File paths
- Choice lists
- Keyword arguments
- Multi-value inputs
- Callback based lists
- Environment variables
- Extensible completion provider system
- Modern Python features (requires Python 3.12+)
- UI framework integration:
- Textual support
- prompt_toolkit support
- Built-in help system
Installation
pip install slashed
Quick Example
from dataclasses import dataclass
from slashed import SlashedCommand, CommandStore, CommandContext
from slashed.completers import ChoiceCompleter
# Define app state that will be available to commands
@dataclass
class AppState:
greeting_count: int = 0
# Define a command with explicit parameters and typed context
class GreetCommand(SlashedCommand):
"""Greet someone with a custom greeting."""
name = "greet"
category = "demo"
async def execute_command(
self,
ctx: CommandContext[AppState],
name: str = "World",
greeting: str = "Hello",
):
"""Greet someone.
Args:
ctx: Command context
name: Who to greet
greeting: Custom greeting to use
"""
state = ctx.get_data() # Type-safe access to app state
state.greeting_count += 1
await ctx.output.print(
f"{greeting}, {name}! "
f"(Greeted {state.greeting_count} times)"
)
def get_completer(self) -> ChoiceCompleter:
"""Provide name suggestions."""
return ChoiceCompleter({
"World": "Default greeting target",
"Everyone": "Greet all users",
"Team": "Greet the team"
})
# Create store and register the command
store = CommandStore()
store.register_command(GreetCommand)
# Create context with app state
ctx = store.create_context(data=AppState())
# Execute a command
await store.execute_command("greet Phil --greeting Hi", ctx)
Command Definition Styles
Slashed offers two different styles for defining commands, each with its own advantages:
Traditional Style (using Command class)
from slashed import Command, CommandContext
async def add_worker(ctx: CommandContext, args: list[str], kwargs: dict[str, str]):
"""Add a worker to the pool."""
worker_id = args[0]
host = kwargs.get("host", "localhost")
port = kwargs.get("port", "8080")
await ctx.output.print(f"Adding worker {worker_id} at {host}:{port}")
cmd = Command(
name="add-worker",
description="Add a worker to the pool",
execute_func=add_worker,
usage="<worker_id> --host <host> --port <port>",
category="workers",
)
Advantages:
- Quick to create without inheritance
- All configuration in one place
- Easier to create commands dynamically
- More flexible for simple commands
- Familiar to users of other command frameworks
Declarative Style (using SlashedCommand)
from slashed import SlashedCommand, CommandContext
class AddWorkerCommand(SlashedCommand):
"""Add a worker to the pool."""
name = "add-worker"
category = "workers"
async def execute_command(
self,
ctx: CommandContext,
worker_id: str, # required parameter
host: str = "localhost", # optional with default
port: int = 8080, # optional with default
):
"""Add a new worker to the pool.
Args:
ctx: Command context
worker_id: Unique worker identifier
host: Worker hostname
port: Worker port number
"""
await ctx.output.print(f"Adding worker {worker_id} at {host}:{port}")
Advantages:
- Type-safe parameter handling
- Automatic usage generation from parameters
- Help text generated from docstrings
- Better IDE support with explicit parameters
- More maintainable for complex commands
- Validates required parameters automatically
- Natural Python class structure
- Parameters are self-documenting
When to Use Which?
Use the traditional style when:
- Creating simple commands with few parameters
- Generating commands dynamically
- Wanting to avoid class boilerplate
- Need maximum flexibility
Use the declarative style when:
- Building complex commands with many parameters
- Need type safety and parameter validation
- Want IDE support for parameters
- Documentation is important
- Working in a larger codebase
Generic Context Example
from dataclasses import dataclass
from slashed import Command, CommandStore, CommandContext
# Define your custom context data
@dataclass
class AppContext:
user_name: str
is_admin: bool
# Command that uses the typed context
async def admin_cmd(
ctx: CommandContext[AppContext],
args: list[str],
kwargs: dict[str, str],
):
"""Admin-only command."""
state = ctx.get_data() # Type-safe access to context data
if not state.is_admin:
await ctx.output.print("Sorry, admin access required!")
return
await ctx.output.print(f"Welcome admin {state.user_name}!")
# Create and register the command
admin_command = Command(
name="admin",
description="Admin-only command",
execute_func=admin_cmd,
category="admin",
)
# Setup the store with typed context
store = CommandStore()
store.register_command(admin_command)
# Create context with your custom data
ctx = store.create_context(
data=AppContext(user_name="Alice", is_admin=True)
)
# Execute command with typed context
await store.execute_command("admin", ctx)
UI Integration Examples
Slashed provides integrations for both prompt_toolkit and Textual:
Prompt Toolkit REPL
from prompt_toolkit import PromptSession
from slashed import CommandStore
from slashed.prompt_toolkit_completer import PromptToolkitCompleter
async def main():
"""Run a simple REPL with command completion."""
# Initialize command store
store = CommandStore()
await store.initialize()
# Create session with command completion
completer = PromptToolkitCompleter(store=store)
session = PromptSession(completer=completer, complete_while_typing=True)
print("Type /help to list commands. Press Ctrl+D to exit.")
while True:
try:
text = await session.prompt_async(">>> ")
if text.startswith("/"):
await store.execute_command_with_context(text[1:])
except EOFError: # Ctrl+D
break
if __name__ == "__main__":
import asyncio
asyncio.run(main())
Textual App
from dataclasses import dataclass
from slashed import ChoiceCompleter, SlashedCommand
from slashed.textual_adapter import SlashedApp
from textual.containers import Container, VerticalScroll
from textual.widgets import Input, Label
@dataclass
class AppState:
"""Application state available to commands."""
user_name: str
class GreetCommand(SlashedCommand):
"""Greet someone."""
name = "greet"
category = "demo"
async def execute_command(self, ctx: CommandContext[AppState], name: str = "World"):
state = ctx.get_data()
await ctx.output.print(f"Hello, {name}! (from {state.user_name})")
def get_completer(self) -> ChoiceCompleter:
return ChoiceCompleter({"World": "Everyone", "Team": "The Team"})
class DemoApp(SlashedApp[AppState, None]):
"""App with slash commands and completion."""
def compose(self) -> ComposeResult:
# Command input with completion
suggester = self.get_suggester()
yield Container(Input(id="command-input", suggester=suggester))
# Output areas
yield VerticalScroll(id="main-output")
yield Label(id="status")
# Connect outputs to widgets
self.bind_output("main", "#main-output", default=True)
self.bind_output("status", "#status")
if __name__ == "__main__":
state = AppState(user_name="Admin")
app = DemoApp(data=state, commands=[GreetCommand])
app.run()
Both integrations support:
- Command completion
- Command history
- Typed context data
- Rich output formatting
Documentation
For full documentation including advanced usage and API reference, visit phil65.github.io/slashed.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request. Make sure to read our contributing guidelines first.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file slashed-0.6.1.tar.gz.
File metadata
- Download URL: slashed-0.6.1.tar.gz
- Upload date:
- Size: 28.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbc690dbb2e0f6a254e55ba4217344485e59138b93ccda4593465e5e3ac8184d
|
|
| MD5 |
8d8d29a386d918c7c2f0e3a68586a622
|
|
| BLAKE2b-256 |
2fc0fa36ecb2d953b91190af86d87300d66412db00c95ccc71a68fa4fc8caf78
|
Provenance
The following attestation bundles were made for slashed-0.6.1.tar.gz:
Publisher:
build.yml on phil65/slashed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
slashed-0.6.1.tar.gz -
Subject digest:
fbc690dbb2e0f6a254e55ba4217344485e59138b93ccda4593465e5e3ac8184d - Sigstore transparency entry: 158072510
- Sigstore integration time:
-
Permalink:
phil65/slashed@a84942b4f4df9d88dd5939d102eb5f918e46b031 -
Branch / Tag:
refs/tags/v0.6.1 - Owner: https://github.com/phil65
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@a84942b4f4df9d88dd5939d102eb5f918e46b031 -
Trigger Event:
push
-
Statement type:
File details
Details for the file slashed-0.6.1-py3-none-any.whl.
File metadata
- Download URL: slashed-0.6.1-py3-none-any.whl
- Upload date:
- Size: 26.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
490e335897b6e22a77adc1c59b697c4417497a347c0c24a39792caf8a86758fd
|
|
| MD5 |
9d43a25eeb2f1009810aea058db3acca
|
|
| BLAKE2b-256 |
6a90d9e7a4172af30204e16740dd45e7bee33bfd8fee35fd52693169cda29f9a
|
Provenance
The following attestation bundles were made for slashed-0.6.1-py3-none-any.whl:
Publisher:
build.yml on phil65/slashed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
slashed-0.6.1-py3-none-any.whl -
Subject digest:
490e335897b6e22a77adc1c59b697c4417497a347c0c24a39792caf8a86758fd - Sigstore transparency entry: 158072513
- Sigstore integration time:
-
Permalink:
phil65/slashed@a84942b4f4df9d88dd5939d102eb5f918e46b031 -
Branch / Tag:
refs/tags/v0.6.1 - Owner: https://github.com/phil65
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@a84942b4f4df9d88dd5939d102eb5f918e46b031 -
Trigger Event:
push
-
Statement type: