Running a Flask Application as a Service with Systemd - miguelgrinberg.com
https://blog.miguelgrinberg.com/post/running-a-flask-application-as-a-service-with-systemd
https://blog.miguelgrinberg.com/post/running-a-flask-application-as-a-service-with-systemd
Miguelgrinberg
Running a Flask Application as a Service with Systemd
When you deploy your application on a server, you need to make sure the application runs uninterrupted. If the application crashes, you'd want it to automatically restart, and if the server…
The problem with inheriting from dict and list in Python - Trey Hunner
http://treyhunner.com/2019/04/why-you-shouldnt-inherit-from-list-and-dict-in-python
http://treyhunner.com/2019/04/why-you-shouldnt-inherit-from-list-and-dict-in-python
Treyhunner
The problem with inheriting from dict and list in Python
I’ve created dozens of Python Morsels since I started it last year.
At this point at least 10 of these exercises involve making a custom …
At this point at least 10 of these exercises involve making a custom …
A Tutorial Introduction to Privacy-Centric Deep Learning -- Exxact Blog
https://blog.exxactcorp.com/a-tutorial-introduction-to-privacy-centric-deep-learning/
https://blog.exxactcorp.com/a-tutorial-introduction-to-privacy-centric-deep-learning/
Exxact
A Tutorial Introduction to Privacy-Centric Deep Learning -- Exxact Blog
Updated for 2019--View our step by step tutorial with code examples to level-up your privacy and data security for deep learning applications.
GitHub - ReviewNB/treon: Easy to use test framework for Jupyter Notebooks
https://github.com/ReviewNB/treon
https://github.com/ReviewNB/treon
GitHub
GitHub - ReviewNB/treon: Easy to use test framework for Jupyter Notebooks
Easy to use test framework for Jupyter Notebooks. Contribute to ReviewNB/treon development by creating an account on GitHub.
Use GitHub Actions to deploy a Python Flask web app to Azure App Service on Linux – siliconvalve
https://blog.siliconvalve.com/2019/03/22/use-github-actions-to-deploy-a-python-flask-web-app-to-azure-app-service-on-linux/
https://blog.siliconvalve.com/2019/03/22/use-github-actions-to-deploy-a-python-flask-web-app-to-azure-app-service-on-linux/
siliconvalve
Use GitHub Actions to deploy a Python Flask web app to Azure App Service on Linux
In this post I am going to walk through how to quickly get a Python Flask web application deployed into a Web App hosted on Azure’s App Service on Linux using GitHub Actions. Getting Azure Re…
Why I chose Flask to build sr.ht’s mini-services | Drew DeVault’s Blog
https://drewdevault.com/2019/01/30/Why-I-built-sr.ht-with-Flask.html
https://drewdevault.com/2019/01/30/Why-I-built-sr.ht-with-Flask.html
Django versus Flask with Single File Applications - Adam Johnson
https://adamj.eu/tech/2019/04/03/django-versus-flask-with-single-file-applications/
https://adamj.eu/tech/2019/04/03/django-versus-flask-with-single-file-applications/
adamj.eu
Django versus Flask with Single File Applications - Adam Johnson
A lot of people pick Flask over Django because they believe it is simpler to start with. Indeed, the Flask front page includes an 8 line “hello world” application, while the Django default project has 172 lines in 5 files, and still doesn’t say “hello world”!…
Implement OAuth in a Flask app using Flask-Dance
https://pusher.com/tutorials/oauth-flask-dance
https://pusher.com/tutorials/oauth-flask-dance
Pusher
Implement OAuth in a Flask app using Flask-Dance | Pusher tutorials
This tutorial provides a practical example app, using Flask-Dance to implement OAuth authentication in a Flask app. The app allows users to log in with GitHub and view a news feed.
A beginner's guide to setting up your own Postgres database server with Docker and Flask!
https://mukulrathi.com/docker-postgres-flask/
https://mukulrathi.com/docker-postgres-flask/
Mukulrathi
A beginner's guide to setting up your own Postgres database server with Docker and Flask!
An comprehensive guide to Docker, Flask and PostgreSQL, with an accompanying real-world Python database server repository with code examples.
Build Your 1st Python Web App With Flask – bhavaniravi – Medium
https://medium.com/bhavaniravi/build-your-1st-python-web-app-with-flask-b039d11f101c
https://medium.com/bhavaniravi/build-your-1st-python-web-app-with-flask-b039d11f101c
Medium
Build Your Python Flask Application
Step by Step tutorial to build your first web application with Python.
Deploying a Text Classification Model using Flask and Vue.js
https://heartbeat.fritz.ai/deploying-a-text-classification-model-using-flask-and-vue-js-25b9aa7ff048
https://heartbeat.fritz.ai/deploying-a-text-classification-model-using-flask-and-vue-js-25b9aa7ff048
Medium
Deploying a Text Classification Model using Flask and Vue.js
Introduction
GitHub - singingwolfboy/flask-dance: Doing the OAuth dance with style using Flask, requests, and oauthlib.
https://github.com/singingwolfboy/flask-dance
https://github.com/singingwolfboy/flask-dance
GitHub
GitHub - singingwolfboy/flask-dance: Doing the OAuth dance with style using Flask, requests, and oauthlib.
Doing the OAuth dance with style using Flask, requests, and oauthlib. - singingwolfboy/flask-dance
TechViz: Serving Machine Learning Models using APIs
https://prakhartechviz.blogspot.com/2019/01/machine-learning-flask-api.html
https://prakhartechviz.blogspot.com/2019/01/machine-learning-flask-api.html
Blogspot
Serving Machine Learning Models using APIs
An introduction to serving ML models through Flask based APIs.
Orbifolds and Other Games - A Local LRU Cache
https://orbifold.xyz/local-lru.html
https://orbifold.xyz/local-lru.html
orbifold.xyz
Orbifolds and Other Games - A Local LRU Cache
How to speed up Python application startup time - DEV Community 👩💻👨💻
https://dev.to/methane/how-to-speed-up-python-application-startup-time-nkf
https://dev.to/methane/how-to-speed-up-python-application-startup-time-nkf
DEV Community
How to speed up Python application startup time
Introduction of Python 3.7's new feature to measure import time
What Is Pip? A Guide for New Pythonistas – Real Python
https://realpython.com/what-is-pip/
https://realpython.com/what-is-pip/
Realpython
Using Python's pip to Manage Your Projects' Dependencies – Real Python
What is pip? In this beginner-friendly tutorial, you'll learn how to use pip, the standard package manager for Python, so that you can install and manage packages that aren't part of the Python standard library.
How to Save Extra Data to a Django REST Framework Serializer
https://simpleisbetterthancomplex.com/tutorial/2019/04/07/how-to-save-extra-data-to-a-django-rest-framework-serializer.html
https://simpleisbetterthancomplex.com/tutorial/2019/04/07/how-to-save-extra-data-to-a-django-rest-framework-serializer.html
Simple is Better Than Complex
How to Save Extra Data to a Django REST Framework Serializer
In this tutorial you are going to learn how to pass extra data to your serializer, before saving it to the database.
Python modules management for newbies
https://wkulikowski.com/2019/programming-environments/wkulikowski.com/2019/programming-environments/
https://wkulikowski.com/2019/programming-environments/wkulikowski.com/2019/programming-environments/