+ 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
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
+ 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