> > While I develop, I update to the latest version to take advantage of any > new cool stuff (e.g., secure sessions in 0.36), or various fixes[1], and > you can even use the master version, which is not even released yet. >
This approach also allows you to easily test a new version of webpy (and switch back if there are problems) or to maintain your own modifications. This is how I do it: download the weby source, save it somewhere, and then at it to the $PATH variable at the top of my code. #!/usr/bin/python import sys, os sys.path.insert(0,"/var/www/webpy/webpy36") import web -- You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to webpy@googlegroups.com. To unsubscribe from this group, send email to webpy+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/webpy?hl=en.