'How to use HTML for the interface and Python for the inner workings
I've been working with a friend on a QR code reader projet. We're working mainly in Python, but wanted to know if there was a way to build the UI and the general website using HTML&CSS while using Python for the scanning of the QR code, because of how complicated building interfaces in python is with my skill.
Is there a way to "import" the Python so that it can be used in combination with HTML and CSS?
Thanks
Solution 1:[1]
Well, there's a very popular way of using python with HTML and CSS. Its called Django. Django Documentation
You can write your code in python and use it in your webpages. But if you mean using python as a JavaScript alternative I don't think there's a convenient way of doing that.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | ZaidBinZaheer |
