🌐
Google
developers.google.com › google identity › authorization › using oauth 2.0 for web server applications
Using OAuth 2.0 for Web Server Applications | Authorization | Google for Developers
February 15, 2026 - This example uses the Flask framework. It runs a web application at http://localhost:8080 that lets you test the OAuth 2.0 flow.
🌐
SQLModel
sqlmodel.tiangolo.com
SQLModel
SQLModel, SQL databases in Python, designed for simplicity, compatibility, and robustness.
People also ask

How is Python different from Java?
Python is different from Java in many ways. Looking at the syntax alone, Python has a simpler syntax and is dynamically typed, whereas Java is more verbose (and much more similar to that of C or C++) and statically typed. In terms of execution, Java requires its code to be compiled so it can be executed inside its virtual machine (known as JVM or Java Virtual Machine), while Python is interpreted, which makes Python a more flexible but often slower option. Finally, when considering the best use cases for each language, Python is widely used in data science, automation, and backend development,
🌐
roadmap.sh
roadmap.sh › python
Learn to become a modern Python developer
Why do beginners use Python?
Beginners choose Python because, generally speaking, it tends to be easier to read, write, and understand than many other programming languages. Python removes the need for complex syntax rules found in languages like C++ or Java (like the use of squirrely braces, or "&&" and "||" to represent a logical AND or a logical OR operator), allowing developers to focus on solving problems rather than debugging syntax errors. On top of that, Python has a vast ecosystem of libraries and frameworks that simplify tasks in web development, data science, and automation, making it very "beginner-fri
🌐
roadmap.sh
roadmap.sh › python
Learn to become a modern Python developer
What skills does a Python developer need?
The skills that a Python developer needs are highly dependent on the industry they'd like to focus on. For example, developers interested in backend web development should be familiar with web frameworks such as Django and Flask. They should also spend some time learning about RESTful design, API management, system architecture, and most likely, some SQL for database querying. On the other hand, for a Python developer who's more interested in data science (also known as a data scientist), expertise in NumPy, Pandas, and machine learning tools becomes necessary. If automation is their focus, de
🌐
roadmap.sh
roadmap.sh › python
Learn to become a modern Python developer
🌐
Igmguru
igmguru.com › blog › python-vs-javascript
Python vs JavaScript: Key Difference, Features and Use Cases
3 weeks ago - Python is mainly used for server-side development using frameworks like Django and Flask. It handles: ... This creates a simple web server. JavaScript runs in the browser and also on servers using Node.js. ... This runs inside the browser. ML and AI are technologies where computers learn from data and make decisions without being explicitly programmed for every task. Python has different libraries for Machine learning and Artificial Intelligence. ... Example (Simple ML Model): It predicts output based on training data.
🌐
Flask
flask.palletsprojects.com › en › stable › tutorial › layout
Project Layout — Flask Documentation (3.1.x)
/home/user/Projects/flask-tutorial ├── flaskr/ │ ├── __init__.py │ ├── db.py │ ├── schema.sql │ ├── auth.py │ ├── blog.py │ ├── templates/ │ │ ├── base.html │ │ ├── auth/ │ │ │ ├── login.html │ │ │ └── register.html │ │ └── blog/ │ │ ├── create.html │ │ ├── index.html │ │ └── update.html │ └── static/ │ └── style.css ├── tests/ │ ├── conftest.py │ ├── data.sql │ ├── test_factory.py │ ├── test_db.py │ ├── test_auth.py │ └── test_blog.py ├── .venv/ ├── pyproject.toml └── MANIFEST.in
🌐
Flask
flask.palletsprojects.com › en › stable › quickstart
Quickstart — Flask Documentation (3.1.x)
Wrapping app.wsgi_app instead of app means that app still points at your Flask application, not at the middleware, so you can continue to use and configure app directly. Extensions are packages that help you accomplish common tasks. For example, Flask-SQLAlchemy provides SQLAlchemy support that makes it simple and easy to use with Flask.
🌐
Roadmap
roadmap.sh › python
Learn to become a modern Python developer
May 14, 2025 - In web development, Python is often used alongside Django or Flask to build robust backend services. It is also used for API development, data processing, and automation. Python is used for many different things and across multiple domains, given how versatile it is. In web development, for example, Python can be used with frameworks like Django and Flask to help developers create scalable applications.
Find elsewhere
🌐
GeeksforGeeks
geeksforgeeks.org › python › flask-creating-first-simple-application
Flask - Creating First Simple Application - GeeksforGeeks
January 7, 2026 - Create a new Python file named app.py. This file will contain the code for your first Flask web application.
🌐
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 ·
🌐
GitHub
github.com › helloflask › flask-examples
GitHub - helloflask/flask-examples: Example applications for Flask learners. · GitHub
For example, if you want to run the Hello application, just execute these commands: ... The applications will always running on http://localhost:5000. Hello (/hello): Say hello with Flask.
Starred by 232 users
Forked by 159 users
Languages   JavaScript 50.6% | HTML 33.9% | CSS 10.5% | Python 4.7%
🌐
Reddit
reddit.com › r/flask › real life examples of complex applications
r/flask on Reddit: Real life examples of complex applications
October 18, 2022 -

Are there some good examples of real applications (not hello world todo/blog post or tutorials) of Flask applications, from where a new flask user could learn best practices from?

Flask doesn't force any design patterns or specific ways to do anything on me, and that leaves me wondering about what are the best ways to do something. How do I split up the routes file from all-routes-in-a-file.py to something more manageable, how do I validate input requests coming from a JS front-end, what are the best practices for doing thing X and Y, that I haven't even thought about yet.

Background information: I am writing a back-end api for a Vue frontend, there are no templates in the flask app, I am using JWT for authentication already. I think I don't need blueprints, because I don't have any templates to separate from the other things. I just don't want to bunch all my routes together in a huge file, like.. all the examples on the internet do.

I have found some open-source flask examples, but they seemed to be doing something weird, or.. were really outdated.

Or should I just write my back-end in Java and Spring, since that is used at work, and I can steal ideas and patterns from work projects? Wanted to use flask, to not have to deal with the massiveness of Spring and Java.

🌐
DigitalOcean
digitalocean.com › community › tutorials › how-to-make-a-web-application-using-flask-in-python-3
How To Build a Web Application Using Flask in Python 3 | DigitalOcean
1 week ago - In your flask_blog directory, open a file named hello.py for editing, use nano or your favorite text editor: ... This hello.py file will serve as a minimal example of how to handle HTTP requests. Inside it, you’ll import the Flask object, and create a function that returns an HTTP response.
🌐
Vintage Story
mods.vintagestory.at › firearms
Firearms - Vintage Story Mod DB
match for arquebus can be put out ... powder flask will stay dry) ... musket: one-shot black bear and nearly kill polar and brown, one-shot double-headed drifter and kill bell in two shots · also musket and be equipped with bayonet (bayonets durability is spent of melee hit instead of musket's) But if this is too much, there are setting available that can tweak damage or reload speed. You can also tweak other aspects of firearms balancing. For example, you can reduce ...
🌐
Real Python
realpython.com › flask-project
Flask Project Structure: Build a Scalable Web App – Real Python
March 22, 2024 - In this section, you’ll prepare the development environment for your Flask project. First, you’ll create a virtual environment and install all the dependencies that you need for your project. In this section, you’ll build your project structure. You can name the root folder of your project any way you like. For example, you could name it rp_flask_board/ if your ultimate goal is to create a message board.
🌐
Miguel Grinberg
blog.miguelgrinberg.com › post › the-flask-mega-tutorial-part-i-hello-world
The Flask Mega-Tutorial, Part I: Hello, World! - miguelgrinberg.com
In this example there are two decorators, which associate the URLs / and /index to this function. This means that when a web browser requests either of these two URLs, Flask is going to invoke this function and pass its return value back to the browser as a response.
🌐
Medium
fithis2001.medium.com › beginners-celery-flask-example-57e45236016a
Beginner’s Celery/Flask example. A fairly complete elementary exercise | by Vasileios Anagnostopoulos | Medium
June 17, 2025 - Beginner’s Celery/Flask example A fairly complete elementary exercise Introduction This is a tutorial on how to use Celery through Flask in Python. We will not touch distributed maters. I had …
🌐
Raymond Camden
raymondcamden.com › 2025 › 01 › 13 › simple-blog-example-in-flask
Simple Blog Example in Flask
January 13, 2025 - Once you've imported Flask and defined an app, you can then begin adding routes using decorators (the @app.route portion above) with the logic defined beneath it. In the example above, a simple HTML string is returned, but to use templates, you just switch to:
🌐
GitHub
github.com › nickjj › docker-flask-example
GitHub - nickjj/docker-flask-example: A production ready example Flask app that's using Docker and Docker Compose. · GitHub
git clone https://github.com/nickjj/docker-flask-example helloflask cd helloflask
Starred by 760 users
Forked by 136 users
Languages   Python 36.1% | Shell 28.4% | HTML 20.2% | Dockerfile 11.3% | JavaScript 2.2% | Mako 1.7% | CSS 0.1%
🌐
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.
🌐
GitHub
github.com › SigNoz › sample-flask-app
GitHub - SigNoz/sample-flask-app: Sample Flask Application to demonstrate OpenTelemetry instrumentation · GitHub
To show how you can see metrics for External calls and DB calls in the Python app, we have created a sample app using a database (MongoDB) to make the example more realistic. If you already have Mongo daemon running, you can skip the following step to install Mongo ... OTEL_RESOURCE_ATTRIBUTES=service.name=flaskApp OTEL_EXPORTER_OTLP_ENDPOINT=http://<IP of SigNoz>:4317 OTEL_EXPORTER_OTLP_PROTOCOL=grpc opentelemetry-instrument python3 app.py
Starred by 10 users
Forked by 19 users
Languages   HTML 40.5% | Python 30.7% | CSS 23.4% | Dockerfile 3.5% | JavaScript 1.9%
🌐
Posit
docs.posit.co › connect › user › flask
Flask – Posit Connect Documentation Version 2026.03.1
Use rsconnect to deploy this example by specifying the flask-restx-example directory containing app.py, greetings.json, and requirements.txt: