I like python for quick prototypes of (sometimes) quite complex systems. On the other hand, I also like the "modern" web frameworks (react, angular) flexibility and rapid development for UI.So I'm trying to find a way to use both together, exclusively for my own prototyping purposes.
For example, I was playing with React and Transcrypt (python compiled to javascript) and it seems to work quite well.
What I can't find is working example / recommended way how to include Redux/Flux or otherwise connect React with global state (and ultimately Python data model).
Has anyone tried this? Any good article / example to recommend?
EDIT: To clarify, I'm trying to use both (Python and modern web UI) in browser, to achieve two things:
Code ALL the logic in python (which is at least for me extremely fast for both coding and refactoring - thus ideal for prototyping)
Use modern UI which is very interactive and also very fast to prototype (templating, data binding, quick custom components, etc)