Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Using Python would have the same problems as using Perl, wouldn't it?


Not necessarily. You just need to put whatever libraries somewhere on your python path.


That's identical to Perl or pretty much any other dynamic language. Just as in Python, you can even modify your library path within the code itself, and use relative paths (so you can distribute apps in a directory and not require the end user to modify their webserver CGI shell execution environment).

e.g. something like:

    BEGIN { push(@INC, "./lib"); };




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: