Quick Dirty Scripts
Project description
qds
qds (Quick Dirty Scripts) is a CLI tool that lets you create and run quick Python scripts from the command line with minimal setup.
Installation
Install via pip:
pip install qds-run
Overview
When you first run any qds command, it initializes a directory in your home folder:
-
~/.qds/qds.tomlA TOML file containing metadata about your scripts. -
~/.qds/<script>.pyPython files where each script’s code lives.
You can then add, edit, list, rename, run, and delete these scripts directly from your terminal.
Basic Usage
-
Initialize your workspace The first time you invoke any command,
~/.qds/qds.tomland the~/.qds/folder will be created automatically. -
Create a new script skeleton
qds add <script_name>
For example:
qds add base64conv
You’ll be prompted to enter a description; after confirming, a file named
~/.qds/base64conv.pyis created. -
Edit your script Open
~/.qds/base64conv.pyin your editor. By default, it will contain a template like this:from qds import qds @qds( args=[("text", str, "Sample text to be provided")], ) def run(text: str) -> str: pass
-
@qdsdecoratorargs: a list of(name, type, description)tuples defining the arguments your script accepts.
-
runfunction- The entry point; return a string to be printed.
-
-
Run your script
You will be prompted to fill in the arguments.
qds run base64conv
Example: Text to Base64 Converter
-
Add the script:
qds add base64conv
-
Edit
~/.qds/base64conv.pyso thatrunlooks like this:import base64 from qds import qds @qds( args=[("text", str, "Text to encode to Base64")], ) def run(text: str) -> str: encoded = base64.b64encode(text.encode("utf-8")).decode("utf-8") return encoded
-
Use it:
$ qds run base64
Available Commands
| Command | Description |
|---|---|
qds add |
Create a new script skeleton |
qds delete |
Delete an existing script |
qds list |
List all available scripts |
qds rename |
Rename a script |
qds run |
Run a script with the given arguments |
qds update |
Update the description of a script |
qds view |
Show the source code of a script |
qds --help |
Display help message |
qds --version |
Display application version |
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 qds_run-0.1.1.tar.gz.
File metadata
- Download URL: qds_run-0.1.1.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.11.9 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
519e50d3725fa113ad994160f9be9182d9761375a8ab55546a8d44a287b3149b
|
|
| MD5 |
fdd387bbf9b20d6434d8c9fc4f763a0c
|
|
| BLAKE2b-256 |
13bfd084b2716aa9615cb543a3a3896f5895ed4678f40d157b937f74a5eaac98
|
File details
Details for the file qds_run-0.1.1-py3-none-any.whl.
File metadata
- Download URL: qds_run-0.1.1-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.11.9 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e07ee4be81bb8e6d366720570d9f0172c1163aa1819539ccf3058731e872954
|
|
| MD5 |
17c17bb3813ec8524419148b8ed1b894
|
|
| BLAKE2b-256 |
a152640cbcc5a82d1a199ebc2e4bf145bfd9027a1fcdacdf4b3c4dc847d912ef
|