> In my case (relatively small embedded application) I use > templates only in a very simple, reduced form and I even think > about replacing them with some basic Python string template > functions. I'm happy with web.py Templator, but in my > application I don't make much use of it, so why not drop it?
I wish I could but i'm far too into the project I do return strings for all my json templates though and only use templetor when I need it. > Btw. what is your experience in using Python and web.py with > only 64 MB of RAM? Any problems? Python runs fine some things have a little overhead like os.popen(200ms) and I wasn't able to use SQLObject as it was far too slow and am now using a basic wrapper for sqlite3 instead. With everything installed web.py running as well as lighttpd and 3 other python socket servers I still have 22MB of available RAM. - brendon -- You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/webpy?hl=en.
