HackerTrans
トップ新着トレンドコメント過去質問紹介求人

deepakjois

no profile record

投稿

Running a static website in AWS for $0.55

cottongeeks.com
7 ポイント·投稿者 deepakjois·昨年·3 コメント

Fun with uv and PEP 723

cottongeeks.com
640 ポイント·投稿者 deepakjois·昨年·227 コメント

Podscript – a CLI tool to transcribe podcasts

github.com
2 ポイント·投稿者 deepakjois·昨年·0 コメント

Podscript – CLI app to transcribe podcasts using ChatGPT and Deepgram

github.com
2 ポイント·投稿者 deepakjois·2 年前·0 コメント

コメント

deepakjois
·昨年·議論
(author of post here)

I still use both Go and Python. But Python gives me access to a lot more libraries that do useful stuff. For example the YouTube transcript example I wrote about in the article was only possible in Python because afaik Go doesn't have a decent library for transcript extraction.
deepakjois
·昨年·議論
C# too: https://devblogs.microsoft.com/dotnet/announcing-dotnet-run-...
deepakjois
·昨年·議論
uvx is useful to run scripts inside PyPi packages. It does not support running Python scripts directly

You can use uvx run scripts with a combination of the --with flag to specify the dependencies and invoking python directly. For e.g

uvx --with youtube-transcript-api python transcript.py

But you wont get the benefit of PEP 723 metadata.