๐Ÿ“ฆ ftnext / awesome-pipx-uvx

Awesome example of `pipx run` or `uvx`

โ˜… 0 stars โ‘‚ 0 forks ๐Ÿ‘ 0 watching โš–๏ธ Creative Commons Zero v1.0 Universal
๐Ÿ“ฅ Clone https://github.com/ftnext/awesome-pipx-uvx.git
HTTPS git clone https://github.com/ftnext/awesome-pipx-uvx.git
SSH git clone git@github.com:ftnext/awesome-pipx-uvx.git
CLI gh repo clone ftnext/awesome-pipx-uvx
nikkie nikkie [docs] Add pipx qrcode example 47571de 2 months ago ๐Ÿ“ History
๐Ÿ“‚ main View all commits โ†’
๐Ÿ“„ LICENSE
๐Ÿ“„ README.md
๐Ÿ“„ README.md

awesome-pipx-uvx

Awesome example of pipx run or uvx

Introduction

uvx

  • uv https://docs.astral.sh/uv/
  • >An extremely fast Python package and project manager, written in Rust.
  • Installation https://docs.astral.sh/uv/getting-started/installation/
  • uvx (equivalent uv tool run)
  • https://docs.astral.sh/uv/guides/tools/

pipx (pipx run)

Use cases (ToC)

Packaging

Japanese: https://nikkie-ftnext.hatenablog.com/entry/pipx-run-make-easier-speech-recognition-release-from-codespaces

Build

$ uvx build
$ pipx run build

Publish

$ uvx twine upload dist/*
$ pipx run twine upload dist/*

Misc

QR code

$ uvx --from 'qrcode[pil]' qr "Some text" > qr.png
$ pipx run --spec 'qrcode[pil]' qr "Some text" > qr.png