About 400 results
Open links in new tab
  1. Django Tutorial: Learn Django Framework - Online Tutorials Library

    To learn Django, start by setting up your environment with Python and Django installed. Then, explore the basics of Django basics through tutorials or official documentation, learning about …

  2. Django - Overview - Online Tutorials Library

    As you already know, Django is a Python web framework. And like most modern framework, Django supports the MVC pattern. First let's see what is the Model-View-Controller (MVC) …

  3. Django - Quick Guide - Online Tutorials Library

    Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. Django makes it easier to build better web apps quickly and with less code.

  4. Django - Ajax - Online Tutorials Library

    Using Ajax in Django can be done by directly using an Ajax library like JQuery or others. Let's say you want to use JQuery, then you need to download and serve the library on your server …

  5. Django - URL Mapping - Online Tutorials Library

    When a user makes a request for a page on your web app, Django controller takes over to look for the corresponding view via the url.py file, and then return the HTML response or a 404 not …

  6. Django - Models - Online Tutorials Library

    Linking Models Django ORM offers 3 ways to link models − One of the first case we will see here is the one-to-many relationships. As you can see in the above example, Dreamreal company …

  7. Django Framework - Online Tutorials Library

    In this chapter, we will discuss about Django Framework in detail. Django is an MVT web framework that is used to build web applications. The huge Django web-framework comes with …

  8. Mastering Django: Build Web Apps & Ace Interviews - Online Course

    Master Django from scratch: Build powerful web apps, learn best practices, and prepare for interviews with hands-on projects and expert guidance.

    • Reviews: 56
    • Django EBook - TutorialsPoint

      Learn Django step-by-step to build robust web applications using Python. Perfect for developers with OOP and coding basics.

    • How to Create and Use Signals in Django? - Online Tutorials Library

      May 11, 2023 · In Django, signals are used to trigger some function whenever any event occurs. For example, when users make some changes in the database, we can trigger a particular …