+ 1
Can Python be uaed in Web Designing????
4 odpowiedzi
+ 15
Why using python?
What happen with css?
+ 13
sorta. I'm sure you could make some kinda html converter but it'd be awkward. you could use it to automate certain repetitive tasks if you need to change a lot of pages or something
of course, you can use it for backend, but I'm not sure that's what you meant.
+ 6
python -m http.server
...hosts the current directory on port 8000; it tells you. I use it sometimes to transfer files / get a quick 'webserver'.
You can make it spit out design templates if you want (like REST / custom actions) but you'll quickly realize you're reinventing the wheel. Django looks alright*, you'll just have to learn the MVC way (similar: Ruby on Rails).
* Personal opinion: Python is an 'interpreter'. Servers...yuck; but people still succeed with it.
+ 3
there are web frameworks for python like django. im not too sure about using it client side but you can use it server side provided that your server supports it.