How Python is used as a back-end in web dev ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How Python is used as a back-end in web dev ?

Good morning ducks, As we know, Python is a back end programming language, but how we merge HTML/CSS/JS and Python to make a website ? by Python front end modules ? or frameworks or what ?

30th Jan 2021, 9:03 AM
Agt Reda
Agt Reda - avatar
10 Answers
+ 3
Python works in server, when web page requesting a server. There are 2 web development frameworks for Python. 1. Django https://www.djangoproject.com/start/ 2. Flask https://flask.palletsprojects.com/en/1.1.x/
31st Jan 2021, 5:41 AM
Adamyan
Adamyan - avatar
+ 2
by sending text (html) response on server side to client (http) requests. usually, templates are used, where you could "merge" python code with html stuff, but all the python is interpreted at server side, and client only receive html (without any python code)...
30th Jan 2021, 1:16 PM
visph
visph - avatar
+ 1
There are more than two web frameworks for python... there are a lot available: https://wiki.python.org/moin/WebFrameworks
31st Jan 2021, 5:44 AM
visph
visph - avatar
0
visph i tough you need css and js too?
30th Jan 2021, 1:27 PM
MomchilSotirov
MomchilSotirov - avatar
0
yes, when I said html, i thought "html bundle" (wich implies css and/or js if needed, as well as pictures, svg, or any other linked files)
30th Jan 2021, 1:29 PM
visph
visph - avatar
0
Oh okay. Thanks for the answer!
30th Jan 2021, 1:30 PM
MomchilSotirov
MomchilSotirov - avatar
0
visph Didin’t understand you, is there a video that explains that please ?
31st Jan 2021, 2:18 AM
Agt Reda
Agt Reda - avatar
0
basics (templating not covered) of bottle (a python http micro framework): https://youtu.be/g_9nsFJS_pk template basics (in bottle): https://youtu.be/kDJFjC3Fjxc
31st Jan 2021, 2:47 AM
visph
visph - avatar
0
visph But in which server ? it operates on cloud or database or what
31st Jan 2021, 9:21 AM
Agt Reda
Agt Reda - avatar
0
Any server: it could be your own PC, your phone or obviously cloud... database is another question ^^
31st Jan 2021, 12:06 PM
visph
visph - avatar