Jeevang1nagarkar.hashnode.dev·Jan 10, 2025🚀 Setting Up a New Project? Here’s Your Complete Checklist! 🚀Being developers, we always wanted to start projects from scratch. When we get the opportunity, we keep thinking about where to start. In this article, I am collecting all the points that we want to remember while setting up the initial code setup. ...1 like·47 readsPythonsoftware development
Pravesh Sudhablog.praveshsudha.com·Jan 2, 2025Optimising Flask Dockerfiles: Best Practices for DevOps and Developers💡Introduction Welcome to the world of DevOps! 🚀 Today, we’re diving into an essential skill for any DevOps engineer: optimizing Dockerfiles for Flask applications. While beginner DevOps engineers often focus on mastering basic Dockerfile syntax, ex...10 likesFlask Framework
Prem Choudharyprem14choudhary.hashnode.dev·Nov 30, 2024Two-tier-flask-app deployment with docker🐠...!!Firstly, we have to pull the mysql server. Steps to do this: Open your EC2 terminal. Run: docker pull mysql Then, clone the application to your EC2 server. Open your EC2 terimal. Run: git clone https://github.com/prem14choudhary/two-tier-flask-...10 likes·29 readsFlask Framework
AbuBakar khan lakhweraabubakarkhanlakhwera.hashnode.dev·Nov 25, 2024Week in Review: Python, PyTorch, and Building with Tkinter 🚀This week, I took a deep dive into Python and PyTorch, while also exploring GUI development with Tkinter. It was an enriching journey where I not only learned core programming concepts but also applied them in a small project. Here’s a summary of my ...Python
Soyuliasoyulia.hashnode.dev·Nov 19, 2024[백엔드] Nginx - Gunicorn - Flask연결GCP에서 Nginx - Gunicorn -Flask를 연결하는 것이 목표이다! 유저이름@인스턴스 이름 :~$ sudo apt update 패키지 업데이트 위한 작업 유저이름@인스턴스 이름 :~$gsutil -m cp -r gs://버킷이름 /복사할 경로 버킷 내용을 인스턴스에 복사한다. 유저이름@인스턴스 이름:~/버킷$ll 명령어로 버킷에 있는 파일 혹은 폴더를 조회할 수 있다. 유저이름@인스턴스 이름 :~$ sudo apt ...nginx
AbuBakar khan lakhweraabubakarkhanlakhwera.hashnode.dev·Nov 11, 2024Week in Review: Starting with Flask – Learning and Teaching TogetherIntroduction This week, I took on the challenge of learning Flask, a lightweight and flexible Python framework for web development. It’s been an exciting journey to start working with this new framework while also introducing the basics to my younger...Flask
Sai Prasanna Maharanasaimaharana.hashnode.dev·Oct 21, 2024What is the difference between Flask API and Fast APIFlask and FastAPI are both popular web frameworks for building APIs in Python, but they differ in several key aspects such as performance, ease of use, and built-in functionality. Below is a comparison of the two based on various factors: 1. Performa...APIFastAPI
Walter John Salibayaiwalts.hashnode.dev·Oct 20, 2024Activity #22: Research: Python FlaskFlask is a lightweight, yet powerful web framework written in Python. It is designed to be easy to use and extend, making it a popular choice for web developers who want to build web applications quickly and efficiently. Flask provides the basic tool...Flask
Monette Nicolasnet150.hashnode.dev·Oct 18, 2024Activity 31: Python Flask Data StructureProject Structure The index.html file serves as the user interface for managing a student list within the web application. It features a form designed for adding new students, along with a table that displays the list of students, complete with head...Python
LingarajTechhub All About Programminglingarajtechhub.com·Oct 5, 2024How to Implement an Effective System: Get Alerts for Maximum ConditionsTo send you a message when a system reaches its limit, we can update the Flask app to check for these conditions and send alerts. I'll add a simple way to log a message when certain limits are passed. Modified Flask Application with Notifications: fr...Flask Framework