https://slides.com/superdiana/flask-micro
Google Developer Expert:
- Web Technologies - Google Maps Platform
- Google Cloud Platform - Firebase
Auth0 Ambassador
Microsoft MVP: Developer Technologies
Python Developer Advocate @ Vonage
🚀 https://superdi.dev
🐦 @cotufa82
Someone who learns new things every single day!!
django is a Python-based free and open-source web framework, which follows the model-template-view (MTV) architectural pattern. It eases the creation of complex, database-driven websites.
Flask is a Python microframework based in Werkzeug, Jinja 2 and the bestest intentions. With Flask we can build Web & Restful apps in an extremely simple way.
<head>
<link rel="stylesheet" href=
"{{ url_for('static', filename='css/materialize.min.css') }}">
{% block head %}{% endblock %}
</head>
{% extends "layout.html" %}
{% block head %}
<script src="https://apis.google.com/js/platform.js" async defer></script>
<meta name="google-signin-client_id" content="{{ client_id }}">
{% endblock %}
@app.route('/login',methods=["POST"])
def login():
@cotufa82
https://superdi.dev