Best of FlaskNovember 2022

  1. 1
    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!

  2. 2
    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.

  3. 3
    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.

  4. 4
    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.