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
- Built-in completers for:
- File paths
- Environment variables
- Choice lists
- Keyword arguments
- Multi-value inputs
- Extensible completion provider system
- Type-safe with comprehensive type hints
- Modern Python features (3.12+)
- Built-in help system
Installation
pip install slashed
Quick Example
from slashed import Command, CommandStore, CommandContext
from slashed.completers import ChoiceCompleter
# Create a command store
store = CommandStore()
# Define a command with completion support
async def greet(ctx: CommandContext, args: list[str], kwargs: dict[str, str]) -> None:
name = args[0] if args else "World"
greeting = kwargs.get("greeting", "Hello")
await ctx.output.print(f"{greeting}, {name}!")
greet_cmd = Command(
name="greet",
description="Greet someone",
execute_func=greet,
usage="[name] --greeting <greeting>",
help_text="Greet someone with a custom greeting.\n\nExample: /greet Phil --greeting Hi",
category="demo",
completer=ChoiceCompleter({
"World": "Default greeting target",
"Everyone": "Greet all users",
"Team": "Greet the team"
})
)
# Register the command
store.register_command(greet_cmd)
# Register built-in commands (help, etc)
store.register_builtin_commands()
# Create context and execute a command
ctx = store.create_context(data=None)
await store.execute_command("greet Phil --greeting Hi", ctx)
Documentation
For full documentation including advanced usage and API reference, visit slashed.readthedocs.io.
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.1.4.tar.gz.
File metadata
- Download URL: slashed-0.1.4.tar.gz
- Upload date:
- Size: 18.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3eed055602dd1f0a042ed5f08350e8265b99e971c55a88ee01910a0807586775
|
|
| MD5 |
03fa2e9c380bc1721ac0852113e7825a
|
|
| BLAKE2b-256 |
b41f8bb867ec882a7628ddb46de087b534caa418afd9f4d9349f11a86fe57f5d
|
File details
Details for the file slashed-0.1.4-py3-none-any.whl.
File metadata
- Download URL: slashed-0.1.4-py3-none-any.whl
- Upload date:
- Size: 16.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32bc1251bd64258fca046950822e8aec7a3244215ce7a4f24fede7b04602ef87
|
|
| MD5 |
6d87a84c9e766447f4b823814f9e062c
|
|
| BLAKE2b-256 |
bff32292594fe776683e413ba7deda04a788f01d03868afe57a44442c1a749ee
|