There is one very important point, I like to to see not improved: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.
Currently web.py is small, relatively easy to understand and one
can use it even on very small machines. Even without database and
omitting the template system. I like this very much - it is a huge
advantage over Django etc. (I'm using Django as well, but for
other types of applications.)
--
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 webpy+un...@googlegroups.com.
To post to this group, send email to we...@googlegroups.com.
Visit this group at http://groups.google.com/group/webpy?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
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 supportPython 3 is the future. We should make web.py ready for it.
* Better integration with third-party toolsweb.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 mistakesThere 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.
- 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
I agree. Think about when you sign up for a website, at the very least. Usually that involves an email confirmation. This is one of the most common things, so I think it should be included.
I agree. Think about when you sign up for a website, at the very least. Usually that involves an email confirmation. This is one of the most common things, so I think it should be included.
I like the idea of keeping in the framework only the necessary
modules, however I see a potential issue in _blindly_ following this
strategy. Let's take the email api as an example: it is just a tiny
wrapper around the Python api, nothing more, so why should it be kept
in the framework? In my opinion (please correct me if wrong), that
module is there (and hope will last) to create a common interface
handy to create pluggable extensions: do you want to create and share
an extension which at some point needs to send an email? Easy, use
``web.sendmail`` and you are done. Without that common interface this
would not be possible.
Hi Anand.I'm just trying to help you out, ok?Have you seen these resources?Any news on migration?