awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 रिपॉजिटरी

Awesome GitHub RepositoriesClass-Based Views

Architectural patterns for handling HTTP requests using reusable classes.

Distinguishing note: Focuses on the view architecture pattern.

Explore 6 awesome GitHub repositories matching web development · Class-Based Views. Refine with filters or upvote what's useful.

Awesome Class-Based Views GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • encode/django-rest-frameworkencode का अवतार

    encode/django-rest-framework

    30,083GitHub पर देखें↗

    Django REST Framework is a toolkit for building standards-compliant web services that map complex data models to structured HTTP responses. It provides a modular architecture for handling the request lifecycle, including authentication, permission checks, and content negotiation. The framework is designed to facilitate the development of robust APIs by transforming complex data types into native formats and validating incoming request payloads against defined schemas. The project distinguishes itself through a highly modular, class-based design that allows developers to build complex views an

    Provides a modular design pattern for handling HTTP requests through reusable components.

    Pythonapidjangopython
    GitHub पर देखें↗30,083
  • litestar-org/litestarlitestar-org का अवतार

    litestar-org/litestar

    8,302GitHub पर देखें↗

    Litestar is a high-performance Python ASGI web framework designed for building asynchronous APIs and web services. It functions as a type-safe toolkit that leverages Python type hints to provide automatic request validation and response serialization, while natively generating interactive API documentation based on the OpenAPI specification. The framework is distinguished by its integrated dependency injection system, which manages shared resources and resolves complex nested service chains directly within request handlers. It further organizes API development through class-based controllers

    Uses class-based views to group related request handlers and share common logic across resource domains.

    Pythonapiasgiasyncio
    GitHub पर देखें↗8,302
  • flask-admin/flask-adminflask-admin का अवतार

    flask-admin/flask-admin

    6,071GitHub पर देखें↗

    Simple and extensible administrative interface framework for Flask

    Registers admin views as self-contained Python classes encapsulating CRUD logic, templates, and permissions.

    Python
    GitHub पर देखें↗6,071
  • pallets-eco/flask-adminpallets-eco का अवतार

    pallets-eco/flask-admin

    6,071GitHub पर देखें↗

    Flask-Admin is a framework for auto-generating administrative interfaces in Flask applications. It provides a Flask Admin Interface that automatically creates create, read, update, and delete views for database models, functioning as a Database Model CRUD Generator that eliminates manual coding for basic data administration tasks. The framework also includes an Extensible Admin Dashboard that developers can customize, along with a File Management Interface for browsing, uploading, and organizing server-side files, and a Redis Console Client for executing interactive Redis commands directly wit

    Each admin view is a Python class that maps directly to a database model, encapsulating CRUD logic.

    Python
    GitHub पर देखें↗6,071
  • facebook/pyreflyfacebook का अवतार

    facebook/pyrefly

    5,390GitHub पर देखें↗

    Pyrefly is a static type checker for Python that operates as a language server, delivering real-time diagnostics, completions, and navigation in any editor supporting the Language Server Protocol. It also performs static tensor shape analysis, using symbolic dimension variables and arithmetic to verify shape consistency in deep learning models without runtime execution. Beyond core type checking, Pyrefly supports gradual adoption workflows: it can generate a baseline of known errors so only new issues are reported, migrate configuration from other type checkers, and automatically suppress exi

    Infers types for Django class-based views and mixins without plugins.

    Rustcode-qualitycontributions-welcomegood-first-issue
    GitHub पर देखें↗5,390
  • django-tastypie/django-tastypiedjango-tastypie का अवतार

    django-tastypie/django-tastypie

    3,948GitHub पर देखें↗

    Django Tastypie RESTful वेब सर्विसेज बनाने के लिए एक फ्रेमवर्क है जो Django मॉडल्स को API रिसोर्सेज से मैप करता है। यह एक मॉडल-आधारित API जनरेटर के रूप में काम करता है, जो HTTP के माध्यम से स्टैंडर्ड CRUD ऑपरेशन्स को सक्षम करने के लिए डेटाबेस मॉडल्स के लिए ऑटोमैटिकली रीड-राइट एंडपॉइंट्स बनाता है। यह प्रोजेक्ट एक मल्टी-फॉर्मेट डेटा सीरियलाइज़र और हाइपरमीडिया API मैपर के रूप में कार्य करता है। यह क्लाइंट रिक्वेस्ट के आधार पर डेटाबेस डेटा को JSON, XML और YAML सहित विभिन्न रिस्पॉन्स फॉर्मेट्स में बदलता है, और रिसोर्स डिस्कवरी के लिए डेटाबेस संबंधों को नेविगेबल लिंक्स में ट्रांसफॉर्म करता है। इस टूलकिट में प्लेन-टेक्स्ट क्रेडेंशियल्स भेजने से बचने के लिए चैलेंज-रिस्पॉन्स हैंडशेक का उपयोग करके यूजर ऑथेंटिकेशन के लिए एक सिक्योरिटी इम्प्लीमेंटेशन शामिल है। यह जटिल डेटा संबंधों को मैप करने और API रिस्पॉन्स की सीरियलाइज़ेशन को मैनेज करने के लिए मैकेनिज्म भी प्रदान करता है।

    Uses class-based views to route HTTP methods to specific handler functions within resource classes.

    Python
    GitHub पर देखें↗3,948
  1. Home
  2. Web Development
  3. Class-Based Views

सब-टैग एक्सप्लोर करें

  • Class-Based View Type CheckingStatic type inference and checking for Django's class-based views and mixins. **Distinct from Class-Based Views:** Distinct from class-based view patterns: focuses on type safety inference for views.