Faqts : Computers : Programming : Languages : Python : Common Problems : Web Programming

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

3 of 6 people (50%) answered Yes
Recently 2 of 4 people (50%) answered Yes

Entry

What advantages does PyApache give over simple Python scripting?

Aug 22nd, 2000 01:01
unknown unknown, Steve Holden, Alex Martelli


Just like mod_python, mod_perl, etc:
1. performance (no interpreter startup cost at every request)
2. ability to implement in Python, not just response handlers,
    but all sort of handlers that Apache let you set (authentication,
    logging, etc, etc).