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

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

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

3 रिपॉजिटरी

Awesome GitHub RepositoriesAttribute Extraction

The process of retrieving concrete values from object attributes using reflective interfaces.

Distinct from Reflection-Based Object Manipulation: Distinct from Reflection-Based Object Manipulation by focusing on the extraction of values rather than general interaction or modification.

Explore 3 awesome GitHub repositories matching programming languages & runtimes · Attribute Extraction. Refine with filters or upvote what's useful.

Awesome Attribute Extraction GitHub Repositories

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

    sebastianbergmann/object-reflector

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

    Object-reflector एक Python ऑब्जेक्ट रिफ्लेक्शन लाइब्रेरी और डायनामिक एट्रिब्यूट एक्सेस टूल है। यह एक ऑब्जेक्ट प्रॉपर्टी एक्सट्रैक्टर के रूप में काम करता है, जिसे रनटाइम के दौरान किसी ऑब्जेक्ट की आंतरिक स्थिति और इनहेरिटेंस पदानुक्रम से मान (values) निकालने के लिए डिज़ाइन किया गया है। यह लाइब्रेरी प्राइवेट, प्रोटेक्टेड और इनहेरिटेड ऑब्जेक्ट एट्रिब्यूट्स को एक्सेस और एक्सट्रैक्ट करने की क्षमता प्रदान करती है। इससे सोर्स कोड में बदलाव किए बिना आंतरिक प्रॉपर्टीज का निरीक्षण करना संभव हो जाता है। यह प्रोजेक्ट सॉफ्टवेयर डिबगिंग वर्कफ़्लो, ऑटोमेटेड टेस्टिंग यूटिलिटीज और सामान्य Python रनटाइम रिफ्लेक्शन जैसे क्षेत्रों को कवर करता है।

    Extracts values from object properties regardless of their visibility or inheritance status.

    PHP
    GitHub पर देखें↗6,283
  • hashicorp/hclhashicorp का अवतार

    hashicorp/hcl

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

    HCL is a configuration language implementation designed for parsing, evaluating, and encoding structured settings through the use of blocks and attributes. It functions as a configuration AST parser and a schema-based decoder that maps attributes and blocks to internal data structures using predefined rules. The project includes an expression evaluation engine that resolves dynamic values and cross-references through multi-phase processing of variables and functions. It also provides a configuration file formatter to standardize the layout and indentation of source code for consistent visual

    Collects attributes from all items in a list, tuple, or set using splat operators.

    Goconfiguration-languagehashicorphcl
    GitHub पर देखें↗5,788
  • realpython/materialsrealpython का अवतार

    realpython/materials

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

    This project is a comprehensive collection of Python programming education materials, including tutorials, exercises, and curated code samples. It serves as a learning curriculum and software engineering toolkit, utilizing Jupyter Notebooks to combine executable code with descriptive educational text. The repository provides practical implementation guides for building large language model applications, such as retrieval-augmented generation systems, stateful AI agents, and machine learning workflows. It distinguishes itself by offering a structured approach to agentic coding workflows, cover

    Retrieve, set, or delete attributes using their names as strings at runtime.

    Jupyter Notebook
    GitHub पर देखें↗5,173
  1. Home
  2. Programming Languages & Runtimes
  3. Reflection-Based Object Manipulation
  4. Attribute Extraction

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

  • Attribute ModificationCapabilities for setting or deleting object attributes dynamically using string names. **Distinct from Attribute Extraction:** Distinct from Attribute Extraction: covers the modification and deletion of attributes, not just the retrieval of values.
  • Splat-BasedCollecting attributes from all items in a collection using a batch operator. **Distinct from Attribute Extraction:** Specific to the 'splat' operator pattern for collection projection, distinct from general reflection-based attribute extraction.