+ 1

Is it possible to create / build websites using pure python code ?

Means without HTML, without CSS and Without JavaScript or without any other Frontend Languages

9th Jun 2021, 7:07 AM
lisa
4 Answers
+ 1
Hi! you can resort to using cms to create websites, for example, such systems as Bitrix, Wordpress, Joomla, Drupal, OpenCart. Site designers such as: Wix, Webflow, Tilda. to do this, you will only need a minimal knowledge and understanding of the frontend
9th Jun 2021, 8:32 AM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
+ 1
python code used at backend to generate websites implies a minimal knowledge of frontend languages (at least html and css), as python code is only used to handle http requests and return http responses in form of html/css files... thoses html/css files could be either statically stored, or dynamically generated (usually by using static templates or less often even by generating the whole html/css code on the fly). without knowing at least basics of html/css syntax, it is quite impossible to even use ready made templates ;P
9th Jun 2021, 9:26 AM
visph
visph - avatar