JAJacqueline Aparijadoinjacquelineaparijado.hashnode.dev·Nov 15, 2024 · 1 min readPython Flask HashThe command python -m venv venv creates a new virtual environment in a folder named "venv" inside your project directory. This environment will have its own Python interpreter and libraries. Verify the venv folder in the project folder which is named...00
JAJacqueline Aparijadoinjacquelineaparijado.hashnode.dev·Nov 15, 2024 · 3 min readActivity 49: Python Flask API with SQLALCHEMY integrationActivity 49: Python Flask API with SQLAlchemy Integration In this activity, we will integrate SQLAlchemy with Flask to create a RESTful API that can interact with a database. SQLAlchemy is an Object Relational Mapper (ORM) for Python that allows us t...00
JAJacqueline Aparijadoinjacquelineaparijado.hashnode.dev·Nov 15, 2024 · 2 min readPython Email SMTPTo implement an email sending functionality in Python using SMTP, you can use the built-in smtplib library to send emails through an SMTP server. Here's a simple Flask application that includes a POST /send-email route to send an email with a custom ...00
JAJacqueline Aparijadoinjacquelineaparijado.hashnode.dev·Nov 15, 2024 · 4 min readActivity 48: Documentation of Python SMTPActivity 48: Documentation of Python SMTP Overview: Python's smtplib is a built-in library that allows you to send emails using the Simple Mail Transfer Protocol (SMTP). This protocol is the standard for email transmission on the internet. With smtpl...00
JAJacqueline Aparijadoinjacquelineaparijado.hashnode.dev·Nov 15, 2024 · 3 min readActivity 46: Documentation of Python JWTActivity 46: Documentation of Python JWT In this activity, we'll document how to work with JSON Web Tokens (JWT) in Python using the PyJWT library. JWT is widely used for securely transmitting information between parties, especially in web applicatio...00