Problem I made a simple web-based file browser with Flask. It also shows some metadata of a file. I have […]
Tag: flask
Using Flask-SocketIO in conjunction with Flask-WTF / WTForms to provide realtime form validation feedback
Problem I am working on a user login using Flask and the following extensions: Flask-Login, Flask-WTF, WTForms and Flask-SocketIO Client-Side […]
Security of simple client/server desktop app
Problem I am writing an application aimed at the desktop but using web technologies. It will have an HTML interface […]
A simple library using Flask and SQLAlchemy
Problem This is the main.py script that does most of the work of Adding movies (Movie objects) as well as […]
Python Flask webserver with small features
Problem With the latest of my projects, I started using Visual Studio Code, which allows for Python linting and also […]
How to make the filtering queries more efficient using flask sqlalchemy?
Problem I have a following table in a flask app class Price(db.Model): __tablename__ = “prices” id = db.Column(db.Integer, primary_key=True) country_code […]