Integrate Python language into websites. As? [closed]

0

Hello, :-) I am an apprentice in Python, and I have the following question:

How can I start integrating the Python language into websites? if possible, what procedures should I follow?

    
asked by anonymous 26.01.2018 / 19:38

1 answer

1

One way to use Python for create sites (if that's what you want, as I understand your question) is by using Frameworks or micro-Frameworks for the language.

A Framework is a set of libraries that add language-specific functionality. As well ? Python is an excellent programming language widely used to create programs using object-oriented and Data Science, but it can also be used for other purposes.

That's what Framwork Web does. 'Simplify' all the complexity of dealing with HTTP and database protocols and allow you to create the back-end structure of your site. The Django is an extremely robust and complete Framework, allows you to create websites quickly and dynamically, since the Flask is more compact and suitable for less complex websites.

    
26.01.2018 / 20:32