Python only replaces PHP or replaces PHP and apache?

0

The first language I learned was PHP, unfortunately. PHP runs along with apache, but I wanted to use python instead, but the tutorials I found about python for the web make it look like it would replace apache, is that right? Do I have to configure it to play the role of the server?

    
asked by anonymous 05.10.2017 / 14:17

1 answer

1

In the Django (the most widespread python web framework) a server is run under the wipes to make it easier to writing of your application. This server runs in the development environment, ie: On your machine. When your site is 'in the air' , it is common to use a different server like Apache.

The difference between PHP and Python is that in PHP you actually use an Apache server in development. With Python this is facilitated during development and applied only in production.

Django Apache Documentation

Practical application step-by-step on the theme

    
05.10.2017 / 15:31