Web Server for Python

M

Mura Zalukhu

Hi all,
I am a newbiew for python,
i want to improve my programming for python.
but i have searching any tutorial to configuration python for webserver but no one of tutorial solved my problem.

could you give me how to configuration ptyhon on webserver like apache / php or
Thanks so much
 
D

david.garvey

Hi Mura,

apache is used as a proxy with python. You would fire up your python web
app and put apache in front of it. Apache does come these days with wsgi
https://code.google.com/p/modwsgi/ that can be added to apache as module,
something like mod_wsgi can be used for your python web app. PHP is another
web app language similar to python that would be sitting behind apache and
would be loaded with PHP code. http://dan.drydog.com/apache2php.html

Example of python web app frameworks would be:
django: https://docs.djangoproject.com/en/1.2/howto/deployment/modwsgi/
web.py http://webpy.org/

And a lot more...

I hope this helps,
Cheers, dgarvey
 
M

Mura Zalukhu

Hi David,
Thanks for your reply,
i will learn it.
Could you give me the best tutorial / web for python. For example how to make a connection with database.
Thanks so much
 
D

Denis McMahon

Could you give me the best tutorial / web for python. For example how to
make a connection with database.

Which database? Which version of Python?

Google may help. So will the Python on-line documentation.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,774
Messages
2,569,596
Members
45,143
Latest member
DewittMill
Top