Breanna Humphresbrehumphres.hashnode.dev路Oct 23, 2024Phase 4 Wrap-Up: A Team Project to RememberPhase 4 was all about new challenges and exciting wins. This time, I got to work with a team, and I absolutely loved the experience. We built a Gaming Tournament App called GameVerse that lets users create, browse, and sign up for tournaments. It was...Discusswomenwhocode
Grivine Balabala-grivine.hashnode.dev路Oct 21, 2024Optimize Data Retrieval in Python with Time-based API PaginationIn the modern application development, APIs(Application Programming Interfaces) serve as the core mechanism for connecting various systems and enabling seamless data exchange. An API is a way for different software systems to communicate with one ano...DiscussAPIs
Grivine Balabala-grivine.hashnode.dev路Oct 19, 2024FastAPI Tutorial: Creating a CRUD Application EasilyFastAPI is a modern, fast(high-performance), web framework for building APIs with Python 3.7+ based on standard Python type hints. FastAPI uses ASGI(Asynchronous Server Gateway Interface) instead of WSGI. ASGI supports asynchronous programming, which...DiscussFastAPI
Anix LynchProanixblog.hashnode.dev路Oct 4, 202420 SQLalchemy concepts with Before-and-After Examples1. Connecting to a Database 馃攲 Boilerplate Code: from sqlalchemy import create_engine engine = create_engine('sqlite:///mydatabase.db') Use Case: Connect to a database (e.g., SQLite, PostgreSQL, MySQL) to perform queries and operations. Goal: Estab...Discusssqlalchemy
kennedy musyokikenedy4.hashnode.dev路Sep 24, 2024Introduction to Backend Programming; BasicsGetting Started In my previous post I boosted myself of being conversant Frontend basic skills and tools; Html, CSS, JavaScript, and React. In this post, I am happy to announce that over the last one month, I have managed to get a grasp of Backend d...Discuss路1 likeJavaScript
Callme-Miladitz-amethyst.hashnode.dev路Aug 17, 2024Optimizing Database Tables with Generics: Python and SQLAlchemy ApproachIt's not always shortened to types, but indeed we can use this method to optimize our tables. In this article, we'll follow the structure of benefiting from generics in models. Tech used in this article: Python FastAPI PostgreSQL SQLAlchemy Wit...DiscussFastAPI
Cosmin Marian Padurarunimsoc.com路Aug 15, 2024How to Recover the Model from a Subquery with SQLAlchemyDisclaimer: This guide offers an alternative explanation to the official SQLAlchemy documentation on subqueries, providing more visual examples and simpler explanations. The information is based on SQLAlchemy==2.0.30, and newer versions or features m...Discuss路83 readsPython
Mohit Bhattcodymohit.com路Jul 31, 2024How to Implement Pagination in Your Flask Applications for Better User ExperienceAre your Flask applications feeling a bit sluggish? If you've ever wrestled with endless lists of data, you know that too much information on one page can be overwhelming and slow. 馃槗 But fear not! Implementing pagination in your Flask app isn't just...Discuss路47 readsPython
Mohit Bhattcodymohit.com路Jul 29, 2024Integrating SQLAlchemy with Flask for Robust Web Application DevelopmentAre you tired of wrestling with complex database management in your Flask applications? Imagine a world where your web app鈥檚 backend effortlessly handles data like a pro! If you鈥檙e a developer keen on supercharging your Flask projects, then you鈥檙e in...DiscussSQL
Chimeziri Obiohatraderstechie.hashnode.dev路Jun 28, 2024Fixing "Already-Fixed" Flask-Migrate Error, And Joining HNG11My first web project, Tradepally.com, was initially built and deployed with Python 3.7 and Flask 1.1 in 2020. While everything worked fine through the years, I knew, through research and new learning, that I'd need to upgrade the Python, Flask, and o...DiscussTechnical PiecesFlask-Migrate