Show HN: Pym – A Python package manager works like NPM(github.com)
github.com
Show HN: Pym – A Python package manager works like NPM
https://github.com/beenotung/pym
3 comments
I just learnt about PDM when I check for name clash after finished the initial implementation.
PDM is doing what I want, with different (and probably better) approach.
pym is a random idea came out when I read people complained about package management in python in another HN discussion.
I may adopt PDM eventually if it's not more complicated then I'd take. I'll try out it sometime.
PDM is doing what I want, with different (and probably better) approach.
pym is a random idea came out when I read people complained about package management in python in another HN discussion.
I may adopt PDM eventually if it's not more complicated then I'd take. I'll try out it sometime.
As I see peer mentioned the package managing in python is sub-optimal, I've a quick idea to make a simple package manager on top of venv with the DX of npm.
PEP 582 [1] is mentioned in the README, which IMHO is the golden path for npm-style project dep management.
[1]: https://peps.python.org/pep-0582/