|
|
|
|
|
by simeonf
1246 days ago
|
|
Just getting back on the latest open source Python ecosystem after a long stint of mostly writing Python in a corporate mono-repo context with bespoke tooling. So far I like: - black autoformats my code swiftly
- ruff is fast and replaces multiple python linters
- pip-tools lets me manage multiple dependency specifications (local, prod, test) more sanely than manually syncing `pip freeze` with multiple requirements files.
- f-strings are nice improvement over .format calls, % string interpolation, string.Templates, etc.
- I appreciate pattern matching and case classes in Scala. I expect to like them using dataclasses and pattern matching Python
|
|