Best of Flask2022

  1. 1
    Article
    Avatar of devtoDEV·4y

    Docker: Explained to a 5 year old. 👶🏻

    Docker is a way to containerize applications (putting code in boxes that can work on their own) Containers are boxes that have no host Operating system, so they are independent of the device they run on. A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

  2. 2
    Article
    Avatar of gcgitconnected·4y

    FastAPI vs. Express.js vs. Flask vs. Nest.js Benchmark

    Travis Luong wanted to verify FastAPI’s claims of having performance on par with Node.js. For this, I used wrk, an HTTP benchmarking tool. I also wanted to test it with a call to an endpoint that makes a call. to a Postgres database in order to simulate a more ‘realistic’ scenario.

  3. 3
    Article
    Avatar of moralisMoralis·3y

    Python and Web3 – A Web3 and Python Tutorial for Blockchain Development

    Web3 is one of today’s most well-established programming languages. With Moralis and the Python SDK, you can seamlessly integrate Web3 functionality into any Python application. This tutorial demonstrates how to create a Web3 Python application that allows users to sign in with MetaMask. The tutorial also illustrates the power of the Auth API.

  4. 4
    Article
    Avatar of moralisMoralis·4y

    Web3 Python – Python Web3 Development Made Easy

    The accessibility originates from the Moralis Python SDK, allowing you to implement Web3 functionality into Python apps in two steps. The article begins with a quick Python introduction, where you gain an overview of the programming language. In the following section, we will look closer at what the language entails in a Web3 context!

  5. 5
    Article
    Avatar of moralisMoralis·3y

    Python for Ethereum Development – Build a Web3 Ethereum Python App

    Python is one of the most popular programming languages used by developers all over the world. In this tutorial, we will show you how to integrate Web3 and blockchain functionality into Python projects with Moralis’ Python SDK. In the next section, we cover the basics by exploring the intricacies of Python.

  6. 6
    Article
    Avatar of dzDZone·4y

    Makefiles For Modern Development

    Make is an abstraction above language-specific tooling. It allows for easy upgrading of that tooling without having to teach your team how to use a new CLI. Makefiles have been in use since 1976, so they’re as battle-tested as can be. Using Make as the project workflows allows for quick onboarding of new developers.

  7. 7
    Article
    Avatar of towardsdevTowards Dev·4y

    Face Detection in Mobile App using Python, Flask, and Flutter

    In this blog, we will be looking at how to implement Face Detection in Mobile App using Python, Flask, and Flutter. You can think there are some platforms like ML-Kit to detect faces. This blog will be purely based on how to detect face on our own ML Algorithm using API.

  8. 8
    Article
    Avatar of kdnuggetsKDnuggets·3y

    5 Python Projects for Data Science Portfolio

    5 Python Projects for Data Science Portfolio will help you develop problem-solving habits. Get more experience by working on web scraping, data analytics, time-series forecasting, machine learning, and deep learning projects. In the five projects, we will learn to: Scrape live yahoo stock prices, perform time series analysis and forecasting.

  9. 9
    Article
    Avatar of tuts_plusTuts+·4y

    Creating a Web App From Scratch Using Python Flask and MySQL

    This tutorial assumes that you have some basic knowledge of the Python programming language. We'll be using Flask , a Python web application framework, to create our application, with MySQL as the back end. In this series, we'll use Python, Flask and MySQL to create a simple web application. It will be a simple bucket list application where users can register, sign in and create their bucket list.

  10. 10
    Article
    Avatar of medium_jsMedium·4y

    Containerize a Python Application using Docker

    Containerize a Python Application using Docker. This article aims to outline the basics of docker and learn how to build an image that runs a Python application in a container.

  11. 11
    Article
    Avatar of communityCommunity Picks·4y

    Building a Todo List Application with Flask

    The application is about to grow massively, to prevent the project from becoming rough and confusing, and to ensure separation of concerns we'll be using Blueprints. Each part of the application will be made into modular applications which will all be registered in the file in the core directory.

  12. 12
    Article
    Avatar of communityCommunity Picks·4y

    Create a Twitter Bot With Python Using the Twitter API

    A couple of weeks ago (before all of Elon's horrible decisions and takeover) I set out to make a Twitter bot and quickly found out that a lot of tutorials out there contain outdated information. So, pour yourself some tea and put on some lo-fi, and let’s create a bot! Match the rest of the settings to the following screenshots.

  13. 13
    Article
    Avatar of codemotionCodemotion·4y

    Top Trending Python Frameworks Today

    Python is easy to learn and use, meaning developers with little coding experience can quickly get to grips with it. It is an interpreted rather than compiled language, making it fast to work with and simple to deploy. The most common use of Jupyter is Jypter Notebooks, an interactive browser-based environment for hosting and processing computational documents, including mathematics, plotting data and rich media.

  14. 14
    Article
    Avatar of testdrivenTestDriven.io·4y

    Python Type Checking

    Python is a strongly typed, dynamic programming language. With it being dynamically typed, types are dynamically inferred, so you can set variable values directly without defining the variable type. Strong and dynamic means that types are inferred at runtime but you can't mix types.