Skip to main content

Fast command runner for Python projects.

Project description

Rapid development assistant, and fast command runner for Python projects.

PyPI Release Documentation Status Changelog MIT Licensed

thx (“thanks”) is capable of running arbitrary jobs, configured via simple options in the PEP 518 standardized pyproject.toml. Jobs can be run on multiple Python versions at once, and independent steps can be executed in parallel for faster results.

Watch thx format the codebase, build sphinx docs, run the test and linter suites on five Python versions, and generate a final coverage report:

Demo of thx

thx can also watch for modifications to your project, and automatically run jobs every time changes are detected—it will even reload its configuration when your pyproject.toml changes:

Demo of thx in watch mode

Usage

Configuration uses standard TOML elements, and jobs can reference shared values, which will be interpolated at runtime:

[tool.thx.values]
module = "thx"

[tool.thx.jobs]
lint = [
    "flake8 {module}",
    "ufmt check {module}",
]
test = "python -m unittest -v {module}.tests"

The configuration above defines two jobs, “lint” and “test”; the “lint” job defines two steps, and these can optionally be run in parallel. Both jobs present themselves as separate commands in thx. Note the automatic replacement of {module} with the configured value thx when running jobs:

$ thx lint
> flake8 thx
> ufmt check thx
$ thx test
> python -m unittest thx.tests

They can also be run together in order, similar to makefiles:

$ thx test lint
> python -m unittest thx.tests
> flake8 thx
> ufmt check thx

By default, thx uses the active Python runtime for jobs, but can also run jobs on multiple runtimes in parallel:

[tool.thx]
python_versions = ["3.7", "3.8", "3.9"]
$ thx test
3.9> python -m unittest thx.tests
3.8> python -m unittest thx.tests
3.7> python -m unittest thx.tests

See the user guide for details on all available configuration options.

Install

thx is available on PyPI:

$ pip install thx

See the user guide for help getting started.

License

thx is copyright Amethyst Reese, and licensed under the MIT license. I am providing code in this repository to you under an open source license. This is my personal repository; the license you receive to my code is from me and not from my employer. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

thx-0.7.0.tar.gz (24.3 kB view details)

Uploaded Source

Built Distribution

thx-0.7.0-py3-none-any.whl (29.7 kB view details)

Uploaded Python 3

File details

Details for the file thx-0.7.0.tar.gz.

File metadata

  • Download URL: thx-0.7.0.tar.gz
  • Upload date:
  • Size: 24.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for thx-0.7.0.tar.gz
Algorithm Hash digest
SHA256 7da5a9a10c9f60ac5306f0ac9a44f029b46f7edb02f7e3e584900d691de80a0c
MD5 417a5cd2875741833d3060e17c57c4c3
BLAKE2b-256 1d8e3f1c738d544aadb1b026ee20c198f8333e407de18b15c2f1f4e4e3d3e719

See more details on using hashes here.

Provenance

The following attestation bundles were made for thx-0.7.0.tar.gz:

Publisher: ci.yml on omnilib/thx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file thx-0.7.0-py3-none-any.whl.

File metadata

  • Download URL: thx-0.7.0-py3-none-any.whl
  • Upload date:
  • Size: 29.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for thx-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7d465a37f5ffee188ecb5b69a5dbe6cb28a8599f61c9de83e7886417e7fc4f18
MD5 aef82f045e6f4c51d7b0d45c644bc3b8
BLAKE2b-256 e82c7b94eed5b545c6743a617ef73389a4a6c25ca1aa24e332ca80fcaa1c43a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for thx-0.7.0-py3-none-any.whl:

Publisher: ci.yml on omnilib/thx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page