Hacker News new | ask | show | jobs
by TeeWEE 3868 days ago
When i saw the example code, the first thing that is see is the use of globals:

  from main import app
  app.html
This is a reason i would never use a library like this. Flask has the same issue with globals. I think is a common problem that python developers have, because its so easy to create global singleton modules with state.