A collection of command line helper scripts wrapping tools used during Python development.
Project description
🧰 Delfino 🧰
A collection of command line helper scripts wrapping tools used during Python development.
Table of content
Installation
- pip:
pip install delfino[all]
- Poetry:
poetry add -D delfino[all]
- Pipenv:
pipenv install -d delfino[all]
Optional dependencies
Each project may use different sub-set of commands. Therefore, dependencies of all commands are optional and checked only when the command is executed.
Using [all]
installs all the optional dependencies used by all the built-in commands. If you want only a sub-set of those dependencies, there are finer-grained groups available:
- For top-level parameters:
completion
- for--show-completion
and--install-completion
- For individual commands (matches the command names):
upload_to_pypi
build_docker
typecheck
format
- For groups of commands:
test
- for testing and coverage commandslint
- for all the linting commands
- For groups of groups:
verify_all
- same as[typecheck,format,test,lint]
all
- all optional packages
Configuration
Delfino will assume certain project structure. However, you can customize it to match your own by overriding the default values in the pyproject.toml
file. Here are the defaults that you can modify:
[tool.delfino]
reports_directory = "reports"
sources_directory = "src"
tests_directory = "tests"
test_types = ["unit", "integration"]
disable_commands = []
verify_commands = ["format", "lint", "typecheck", "test-all"]
disable_pre_commit = false
[tool.delfino.typecheck]
strict_directories = ['src']
[tool.delfino.dockerhub]
username = ""
build_for_platforms = [
"linux/amd64",
"linux/arm64",
"linux/arm/v7",
]
Usage
Run delfino --help
to see all available commands and their usage.
Auto-completion
You can either attempt to install completions automatically with:
delfino --install-completion
or generate it with:
delfino --show-completion
and manually put it in the relevant RC file.
The auto-completion implementation is dynamic so that every time it is invoked, it uses the current project. Each project can have different plugins or disable certain commands it doesn't use. And dynamic auto-completion makes sure only the currently available commands will be suggested.
The downside of this approach is that evaluating what is available each time is slower than a static list of commands.
Development
Delfino is a simple wrapper around Click. It allows you to add custom, project-specific commands. Let's call them plugins. Plugins are expected in the root of the project, in a Python package called commands
. Any sub-class of click.Command
in any .py
file in this folder will be automatically used by Delfino.
Minimal plugin
- Create the
commands
package:mkdir commands touch commands/__init__.py
- Create a file
commands/plugin_test.py
, with the following content:import click @click.command() def plugin_test(): """Tests commands placed in the `commands` folder are loaded.""" print("✨ This plugin works! ✨")
- See if Delfino loads the plugin. Open a terminal and in the root of the project, call:
delfino --help
. You should see something like this:Usage: delfino [OPTIONS] COMMAND [ARGS]... Options: --help Show this message and exit. Commands: ... plugin-test Tests commands placed in the `commands` folder... ...
- Run the plugin with
delfino plugin-test
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
File details
Details for the file delfino-0.18.1.tar.gz
.
File metadata
- Download URL: delfino-0.18.1.tar.gz
- Upload date:
- Size: 23.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.7.12 Linux/5.13.0-1023-aws
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc4f604c66c86e76d42eb02f667420ae34f24f126022cf5b94b88e5ce6a65451 |
|
MD5 | 91d9c0a41fb5b6f5481082a42c6aee35 |
|
BLAKE2b-256 | a6aa98b07c3dcfc0eab9c393590752e105877aba5972d8edc9de84012ce7d4ca |
File details
Details for the file delfino-0.18.1-py3-none-any.whl
.
File metadata
- Download URL: delfino-0.18.1-py3-none-any.whl
- Upload date:
- Size: 27.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.7.12 Linux/5.13.0-1023-aws
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e6fbb0c93a38eff43386ac9f38a310c4145933a8b17f3095a91426336309023 |
|
MD5 | 68fa8982148d19cbb6b2468a03e98f0f |
|
BLAKE2b-256 | 60a7efc8361f1cada267d3d4a9b0f9e48c131025c05c5208c63b00e0e80809c6 |