Hello everyone, I've been wondering from long time about how to move forward about web.py development. Here is the summary of my thoughts.
Main Priorities: * Python3 support Python 3 is the future. We should make web.py ready for it. * Better integration with third-party tools web.py has not been very good at supporting integration with third-party tools and making it easier for other people to write some kind of extensions to web.py. I think this is very important for the adoption of web.py. * Fixing the earlier design mistakes There are some design mistakes that I would like to fix. - The web.database module depends the request locals, which is a design mistake. I've started a new project to make the database module of web.py independent of other part of web.py. It is still work in progress. https://github.com/anandology/sqlpy - We haven't got the form API is right. I've always extended form class, overwritten some important methods, etc, whenever I've tried to use it. This needs to be improved. - Sessions. This another part of web.py that I'm not happy about. May be this should have been an extension instead of core part of web.py. I'm not really sure what to do about this. Please let me know your thoughts about this. If there are any parts of web.py that you think need to be improved, or an API is not right, please let me know. Anand -- You received this message because you are subscribed to the Google Groups "web.py" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/webpy?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
