Synchronized alias package for rendo-aclip
Project description
aclip
aclip is the official short-name Python package for ACLIP.
It is published in lockstep with rendo-aclip and installs the same SDK release.
Use aclip if you want the shortest install command.
Use rendo-aclip if you want the canonical dependency name in project manifests.
Install
Short-name install:
pip install aclip
Canonical install:
pip install rendo-aclip
Either way, the import path is:
from aclip import AclipApp
What ACLIP gives you
- natural CLI invocation
- progressive Markdown help
- structured result and error envelopes
- sidecar manifests for distribution metadata
- packaging helpers for shipping binary CLIs
First Working CLI
from aclip import AclipApp, cli_main
def create_app() -> AclipApp:
app = AclipApp(
name="notes",
version="0.2.2",
summary="A minimal notes CLI.",
description="Create and list notes from a small local CLI.",
)
app.group(
"note",
summary="Manage notes",
description="Create and inspect notes.",
).command(
"create",
summary="Create a note",
examples=["notes note create --title hello --body world"],
handler=lambda title, body: {"note": {"title": title, "body": body}},
)
return app
cli_main("notes_cli.app:create_app")
Typical usage:
notes --help
notes note --help
notes note create --help
notes note create --title hello --body world
Installing aclip installs rendo-aclip==0.2.2.
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 aclip-0.2.2.tar.gz.
File metadata
- Download URL: aclip-0.2.2.tar.gz
- Upload date:
- Size: 1.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d5f316219058724642a1557cf353595d5e72b205dbd287789765b6f73c8b521
|
|
| MD5 |
c066f22c68f7475547f902c22c1c1176
|
|
| BLAKE2b-256 |
a09070f45663d8aaeee8e793a79324a64fbeedf3144fe0399ede8e9a0eaab804
|
File details
Details for the file aclip-0.2.2-py3-none-any.whl.
File metadata
- Download URL: aclip-0.2.2-py3-none-any.whl
- Upload date:
- Size: 1.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7ab2b7d7b2024b43fd2be0df29b8de5c3a4eb38c6bbc28ea48843e579da4b7f
|
|
| MD5 |
6eaf816d2932128e646dbca93cef0b7f
|
|
| BLAKE2b-256 |
d232b73d492652551f05491edec042d0e1b5761683bde9c6e33ba94f9b14c6e4
|