0

Where to use flask (PYTHON / WEB)

Where would I use flask on a website? Like, how would I tell the website I'm using flask? Does it need to be inside the code or do I need to put it elsewhere?

24th Sep 2024, 5:13 PM
Xmosity
7 ответов
+ 1
Flask is a small web framework written in python
24th Sep 2024, 5:16 PM
Mihaly Nyilas
Mihaly Nyilas - avatar
+ 1
I thought it also lets you write Python code in web development?
24th Sep 2024, 5:22 PM
Xmosity
+ 1
yes, it's a python framework. but you can try django as well. it's more beginner friendly, but very great and useful
24th Sep 2024, 5:25 PM
Mihaly Nyilas
Mihaly Nyilas - avatar
+ 1
ok but how do i use it?
24th Sep 2024, 6:14 PM
Xmosity
0
it has a great, well written documentation
24th Sep 2024, 7:46 PM
Mihaly Nyilas
Mihaly Nyilas - avatar
0
this not the place for advertising, but you can find a link under my profile -> see activity -> highlights -> projects -> MNY::development it's written in python-django, using bootstrap and tailwindcss
24th Sep 2024, 7:52 PM
Mihaly Nyilas
Mihaly Nyilas - avatar
0
Flask is a web server and needs to be running to use it. In most cases, you have it setup and just leave it running on whatever computer. It will run on Windows/Linux/Mac whatever. Once the Flask server is running, you'll have to setup your navigation and build your various web pages. You'll need to find a tutorial about all this. But once you get it running, you'll find it fairly easy to work with. If you are running it on your own PC, you'll want to "start" the server (flask). Then you can reach it with the address/port using your browser.
24th Sep 2024, 9:29 PM
Jerry Hobby
Jerry Hobby - avatar