PDA

View Full Version : Anyone here know Django?



darrenm
March 1st, 2007, 06:10 PM
I want to write a frontend to my Legus project using Python. Django seems pretty good but I really need to do the following:

parse config files
edit config files
run system commands
etc.

I can do all this perfectly easily with Python but can Django let me have access to the python backend scripts through the web framework? I just don't really want to have to use various languages like PHP > BASH > Perl etc. It would be nice to do the whole thing in Python.

Thanks

Mirrorball
March 1st, 2007, 08:35 PM
Yes, Django is just a library to make web development easier. You can import any Python library into your modules as you normally do. There isn't going to be any difference.