🌐
Flask
flask.palletsprojects.com β€Ί en β€Ί stable β€Ί tutorial β€Ί layout
Project Layout β€” Flask Documentation (3.1.x)
Installation files telling Python how to install your project. Version control config, such as git. You should make a habit of using some type of version control for all your projects, no matter the size. Any other project files you might add in the future. By the end, your project layout will look like this: /home/user/Projects/flask-tutorial β”œβ”€β”€ flaskr/ β”‚ β”œβ”€β”€ __init__.py β”‚ β”œβ”€β”€ db.py β”‚ β”œβ”€β”€ schema.sql β”‚ β”œβ”€β”€ auth.py β”‚ β”œβ”€β”€ blog.py β”‚ β”œβ”€β”€ templates/ β”‚ β”‚ β”œβ”€β”€ base.html β”‚ β”‚ β”œβ”€β”€ auth/ β”‚ β”‚ β”‚ β”œβ”€β”€ login.html β”‚ β”‚ β”‚
🌐
Codecademy
codecademy.com β€Ί learn β€Ί learn-flask
Learn Flask | Codecademy
Learn the basics of the Flask framework and create your own web application! ... Learn how to inject Python into HTML with templates and how to collect user data with forms.
Rating: 3.9 ​ - ​ 57 votes
Discussions

Python open source projects to contribute
Contribute to something you use or that's useful to you. Much better motivation than contributing just for the sake of contributing... More on reddit.com
🌐 r/Python
27
2
2 weeks ago
Please link me some flask website examples.
This is my personal company website, made in Flask. https://globinary.io There are a couple of apps I made in Flask but unfortunately are for clients and if I link thrm to you, you will only see an authentication page. On a quick Google search, companies like Zillow, Patreon, Reddit, Trivago, Pinterest, and many others use Flask in their websites. Also, many, many top companies use Flask in their stack such as Samsung, Netflix, Uber, Airbnb, etc. So, you should feel comfortable enough and confident enough to get started or get better at Flask. More on reddit.com
🌐 r/flask
16
3
April 19, 2024
🌐
Flask
flask.palletsprojects.com β€Ί en β€Ί stable β€Ί quickstart
Quickstart β€” Flask Documentation (3.1.x)
Do not run the development server or debugger in a production environment. To enable debug mode, use the --debug option. $ flask --app hello run --debug * Serving Flask app 'hello' * Debug mode: on * Running on http://127.0.0.1:5000 (Press CTRL+C to quit) * Restarting with stat * Debugger is active!
🌐
Real Python
realpython.com β€Ί learning-paths β€Ί flask-by-example
Flask by Example (Learning Path) – Real Python
Learn how to create a Python Flask example web application and deploy it using Heroku.
🌐
Python Basics
pythonbasics.org β€Ί flask-tutorial-hello-world
Flask Tutorial: Hello World - Python Tutorial
Open a terminal (see below how to open one quickly). Then install python3-venv. ... The virtual environment has been created, but it’s not yet active. Activate the virtual environment on Linux, use the command: ... The first step is to install Flask. Python comes with a package manager named pip.
🌐
GeeksforGeeks
geeksforgeeks.org β€Ί python β€Ί flask-creating-first-simple-application
Flask - Creating First Simple Application - GeeksforGeeks
January 7, 2026 - In this article, we will learn how to build a basic web application using Flask, which is a lightweight Python framework create and run web apps.
🌐
Real Python
realpython.com β€Ί flask-by-example-part-1-project-setup
Deploying a Python Flask Example Application Using Heroku – Real Python
March 12, 2023 - In this step-by-step tutorial, you'll learn how to create a Python Flask example web application and deploy it using Heroku.
Find elsewhere
🌐
Reddit
reddit.com β€Ί r/python β€Ί python open source projects to contribute
r/Python on Reddit: Python open source projects to contribute
2 weeks ago -

Hi everyone,

I have around 1 year of professional experience with python as a backend developer, but I worked with python for hobby projects for a few years now. I'm looking for some small/medium size open source projects to contribute and keep expanding my skills. I would be interested to contribute continuously if there is a project that piques my interest. Some of my interests involve: Web development, AI and data processing. If you have anything suitable projects that welcome new contributors feel free to share them in the comments. If you want to see my personal GitHub profile you can dm me.

🌐
FastAPI
fastapi.tiangolo.com β€Ί tutorial β€Ί bigger-applications
Bigger Applications - Multiple Files - FastAPI
There's a subdirectory app/routers/ with another file __init__.py, so it's a "Python subpackage": app.routers.
🌐
Teclado
python-web.teclado.com β€Ί section07 β€Ί lectures β€Ί 01_hello_world_flask
'Hello, world!' with Flask | Web Developer Bootcamp with Flask and Python
For this demonstration, we'll be using Python 3.8. Run the following commands on your terminal based on your operating system: ... If you're having trouble with your installation, checkout this detailed installation guide here[4]. If you go to the Flask[5] website, you are welcomed with a very simple example application that has just five lines of code.
🌐
Coursera
coursera.org β€Ί courses
Best Python Courses & Certificates [2026] | Coursera
To learn Python effectively, you should focus on several key skills. Start with the basics of programming, including syntax, data types, and control structures. Understanding libraries and frameworks, such as Pandas for data manipulation and Flask for web development, is also essential.
🌐
DEV Community
dev.to β€Ί nagatodev β€Ί getting-started-with-flask-1kn1
Getting started with Flask - DEV Community
January 20, 2022 - The app variable declared in the __init__.py script is imported here and used as a decorator. The line @app.route('/') is a python decorator made available by flask and this is used to modify the index function called below it and to assign ...
🌐
Python
python.org
Welcome to Python.org
Web Development: Django, Pyramid, Bottle, Tornado, Flask, Litestar, FastAPI Β· GUI Development: tkInter, PyGObject, PyQt, PySide, Kivy, wxPython, DearPyGui Β· AI and Machine Learning: PyTorch, TensorFlow, scikit-learn, Transformers, Anthropic, LangChain Β· Scientific and Numeric: SciPy, Pandas, IPython Β·
🌐
GeeksforGeeks
geeksforgeeks.org β€Ί python β€Ί python-introduction-to-web-development-using-flask
Introduction to Web development using Flask - GeeksforGeeks
1 week ago - Python Web Framework Flask support various HTTP protocols for data retrieval from the specified URL, these can be defined as Β· A web application often requires a static file such as javascript or a CSS file to render the display of the web page in browser. Usually, the web server is configured to set them, but during development, these files are served as static folder in your package or next to the module. See the example in JavaScript given below:
🌐
Replit Docs
docs.replit.com β€Ί tutorials β€Ί effective-prompting
Replit Docs
Learn principles and see examples for writing effective prompts when using Replit Agent.
🌐
Stack Overflow
stackoverflow.com β€Ί questions β€Ί 79921600 β€Ί im-unsure-how-to-iterate-through-columns-and-rows-using-pandas-as-i-get-a-key
I'm unsure how to iterate through columns and rows using ...
Datafill=[] for row in df: StKey = df["station_key"][row] for row2 in dfStatRef: if dfStatRef["station_key"][row2] == StKey: if dfStatRef["rms_region"][r...
🌐
Onwingspan
verify.onwingspan.com
Certificate Verification | Infosys Wingspan
Infosys Wingspan certificate verification web application