🔍 Code Extractor

Browse Components

Showing 20 of 1504 components

  • class ResultInfo

    A class representing result information for operations, containing success and failure details with HTTP-style status codes and sub-codes.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/office365/communications/result_info.py | Lines: 4-13

    result-handling status-codes error-handling office365 client-value
  • class CloudCommunications

    CloudCommunications is a class that provides access to Microsoft Graph API cloud communications resources including calls, call records, online meetings, and user presence information.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/office365/communications/cloud_communications.py | Lines: 11-74

    microsoft-graph communications presence calls meetings
  • class GraphClient

    GraphClient is a client class for interacting with Microsoft Graph API, providing authentication and access to various Microsoft 365 services including users, groups, drives, teams, and more.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/office365/graph_client.py | Lines: 69-578

    microsoft-graph azure-ad authentication oauth2 microsoft-365
  • class DeltaPath

    DeltaPath is a specialized path class that represents a 'delta' entity path in the Office365 SDK, inheriting from EntityPath.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/office365/delta_path.py | Lines: 4-8

    office365 microsoft-graph delta-query path-construction api-endpoint
  • class LoggerContext

    A base class that provides namespaced logging functionality to subclasses through a lazy-initialized class-level logger.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/office365/logger.py | Lines: 18-31

    logging base-class mixin namespace lazy-initialization
  • function ensure_debug_secrets

    Dynamically adds a custom 'debug_secrets' logging method to Python's logging.Logger class in an idempotent manner.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/office365/logger.py | Lines: 7-14

    logging monkey-patching custom-logging-level idempotent class-extension
  • class DeltaCollection

    A specialized collection class for handling delta queries in Microsoft Graph API, allowing retrieval of newly created, updated, or deleted entities (changes) with filtering capabilities.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/office365/delta_collection.py | Lines: 14-39

    microsoft-graph delta-query change-tracking synchronization api-collection
  • class GraphRequest

    GraphRequest is a specialized OData request class configured for Microsoft Graph API interactions using V4 JSON format.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/office365/graph_request.py | Lines: 5-7

    microsoft-graph odata api-request json-format v4
  • class BaseItem

    The baseItem resource is an abstract resource that contains a auth set of properties shared among several other resources types

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/office365/base_item.py | Lines: 10-111

    class baseitem
  • function unparse

    Converts a Python dictionary into an XML document string, serving as the reverse operation of XML parsing. Supports customizable formatting, encoding, and XML generation options.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/xmltodict.py | Lines: 476-516

    xml serialization dictionary-to-xml xml-generation data-conversion
  • function _emit

    Recursively converts a dictionary structure into XML SAX events, emitting them through a content handler for XML generation.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/xmltodict.py | Lines: 397-473

    xml sax serialization dictionary-to-xml recursive
  • function _process_namespace

    Processes XML namespace prefixes in element/attribute names by resolving them against a namespace dictionary and reconstructing the full qualified name.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/xmltodict.py | Lines: 382-394

    xml namespace parsing string-processing xml-namespaces
  • function parse

    Parses XML input (string, file-like object, or generator) and converts it into a Python dictionary representation with configurable options for attributes, namespaces, comments, and streaming.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/xmltodict.py | Lines: 202-379

    xml parsing xml-to-dict dictionary data-conversion
  • class _DictSAXHandler

    A SAX (Simple API for XML) event handler that converts XML documents into Python dictionaries, with extensive configuration options for handling attributes, namespaces, CDATA, and structure.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/xmltodict.py | Lines: 43-199

    xml sax parser xml-to-dict event-handler
  • class ParsingInterrupted

    A custom exception class that signals an interruption in a parsing operation.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/xmltodict.py | Lines: 39-40

    exception parsing control-flow xml error-handling
  • class Sentinel

    Creates a unique sentinel object that can be used as a distinct marker value in code, similar to None but with custom identity and representation.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/typing_extensions.py | Lines: 4210-4245

    sentinel marker singleton type-hint unique-value
  • function _is_unpacked_typevartuple

    Checks if a given type annotation represents an unpacked TypeVarTuple (i.e., *Ts syntax in type hints).

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/typing_extensions.py | Lines: 3165-3173

    type-checking type-introspection generics TypeVarTuple Unpack
  • function _has_generic_or_protocol_as_origin

    Internal function that inspects the call stack to determine if the caller is from typing.py and has Generic or Protocol as the origin parameter.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/typing_extensions.py | Lines: 3143-3159

    introspection stack-inspection typing generic protocol
  • function _unpack_args

    Unpacks tuple arguments that have been marked with the __typing_unpacked_tuple_args__ attribute, flattening nested tuple type arguments while preserving non-unpacked arguments.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/typing_extensions.py | Lines: 2529-2537

    typing type-hints internal-utility tuple-unpacking variadic-generics
  • function _concatenate_getitem

    Internal function that validates and processes parameters for the Concatenate type hint construct, ensuring proper format with a ParamSpec or ellipsis as the final parameter.

    File: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/typing_extensions.py | Lines: 2127-2138

    typing type-hints internal validation concatenate