Bil Tal
08/21/2024, 1:51 PMuv
which is a python dependency manager (like poetry
and pip
)
This is a my folder structure:
flows
\--- common
\--- Dockerfile
\--- flow-1
\--- flow.py
\--- deployment.py
\--- flow-2
\--- flow.py
\--- deployment.py
When using uv
or other dependency manager, you're supposed to work with a proper Python module (a folder with an __init__.py
file)
But the flow is a script, as it's one file, without a proper module name, so I'm getting into problems.
Is this a good direction?
How do you manage many flows?
Does anyone here work with poetry
or with uv
?
Thanks!Nate
08/21/2024, 4:51 PMNate
08/21/2024, 4:53 PMuv
all the time! did you see yesterday's announcement?
https://astral.sh/blog/uv-unified-python-packagingBil Tal
09/05/2024, 6:45 AM