Replies: 1 comment 2 replies
-
|
@kdeldycke |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I discovered PyInfra thanks to @wowi42's talk at FOSDEM 2026.
I maintain the
extra-platformsPython package, which helps me detect architectures, platforms, shells, terminals and CI systems, and group them by family. Something I need for my various multi-platform CLIs.extra-platformswas born out of limitations of thedistropackage, that PyInfra also relies on. So there is a natural filiation.Quickly looking at PyInfra code, there is no concept of family. So you have to do write things like:
With extra-platforms, you can rely on family matching:
So I think
extra-platformscould be a good fit for PyInfra.And you can go deep because extra-platforms covers:
Beta Was this translation helpful? Give feedback.
All reactions