Anyone know of a redux-like module for Python?

After spending some time with react and redux, I’m falling in love with state management. Anyone know of a Python package that handles global app state similar to the way Redux does? There are several older examples of ‘Functional State Machines’ I’ve found, but they are pretty basic and generic. I’m hoping there’s something more sophisticated out there, but the Googles have borne no fruit. Thanks!

I know it’s been a while but I just found this with a simple Google search, https://github.com/usrlocalben/pydux

1 Like

I’ll check it out. Thanks!