• beeng@discuss.tchncs.de
    link
    fedilink
    arrow-up
    21
    arrow-down
    1
    ·
    1 month ago

    Using the UV hashbang and a few doc strings for dependencies so you can run full on python scripts as executables is fucking crack.

    • _stranger_@lemmy.world
      link
      fedilink
      arrow-up
      16
      ·
      1 month ago

      Literally it’s best feature, because then you can download a binary and guarantee that with that binary, you have a working python virtualenv on every platform UV supports.

    • logging_strict
      link
      fedilink
      arrow-up
      1
      ·
      1 month ago

      That means it can’t be maintained by the community it’s serving. For those skilled in both Rust and Python can understand why it would appear as the best thing since sliced bread.

      What about for those not skilled in Rust? Should we also learn 15 other coding languages while we are at it?

      wreck is written in Python and manages dependencies. via hierarchy of requirements files, not TOML. It’s venv aware. For Python package authors.

    • _stranger_@lemmy.world
      link
      fedilink
      arrow-up
      10
      ·
      1 month ago

      UV has a shitload of features. I’ve only ever really used it for making virtualemvs for easier cross platform compatibility, but even just for that, there’s tons of options related to which packages, from where, etc.

      tl:dr probably, although differentiating between “deploy” and “dev” installs is the task of the package config which UV doesn’t (to my knowledge) replace in any way.

    • logging_strict
      link
      fedilink
      arrow-up
      1
      arrow-down
      1
      ·
      1 month ago

      wreck can. It’s venv aware. Takes full advantage of hierarchical requirement files. Is intuitive. The learning curve is minimal. Written in Python.

      [[tool.wreck.venvs]]
      venv_base_path = '.venv'
      reqs = [
          'requirements/pip',
          'requirements/pip-tools',
          'requirements/prod',
          'requirements/dev',
          'requirements/manage',
          'requirements/kit',
          'requirements/mypy',
          'requirements/tox',
      ]
      [[tool.wreck.venvs]]
      venv_base_path = '.doc/.venv'
      reqs = [
          'docs/requirements',
          'docs/pip-tools',
      ]
      
      [tool.setuptools.dynamic]
      dependencies = { file = ['requirements/prod.unlock'] }
      optional-dependencies.pip = { file = ['requirements/pip.lock'] }
      optional-dependencies.pip_tools = { file = ['requirements/pip-tools.lock'] }
      optional-dependencies.dev = { file = ['requirements/dev.lock'] }
      optional-dependencies.manage = { file = ['requirements/manage.lock'] }
      optional-dependencies.docs = { file = ['docs/requirements.lock'] }
      

      reqs fix --venv-relpath='.venv'

      reqs fix --venv-relpath='.doc/.venv'

      From *.in requirements files would produce *.unlock and *.lock files for venv .venv. Package versions are sync’ed within all requirements files within that venv.

  • PlanterTree@discuss.tchncs.de
    link
    fedilink
    English
    arrow-up
    2
    ·
    28 days ago

    example of using uv to install a python tool:

    uv tool install harlequin
    

    nice! It just works (harlequin.sh is a python program that allows to interact with databases using SQL qury langues, you can also load csv and json data)

    • Vulwsztyn
      link
      fedilink
      arrow-up
      3
      ·
      27 days ago

      I know it’s not the point of this comment, but I’ll check harlequin out

  • Unsealed9041@lemmy.ca
    link
    fedilink
    arrow-up
    2
    arrow-down
    3
    ·
    1 month ago

    They kind of lost me at piping a script to sh. Is this the official way? Get your shit packaged into the popular distros. DevOps isn’t that hard.