U
    ÷	Àh  ã                   @   s$   d Z ddlmZ G dd„ deƒZdS )zÀ
Jingles Application Configuration

This module defines the configuration for the jingles Django application,
which handles jingle detection, ad break identification, and template management.
é    )Ú	AppConfigc                   @   s$   e Zd ZdZdZdZdZdd„ ZdS )ÚJinglesConfigaÛ  
    Configuration class for the jingles application.
    
    This class defines the jingles application settings and handles
    application initialization, including setting up signal handlers
    for jingle detection and ad break processing.
    
    Attributes:
        default_auto_field (str): The default primary key field type for models
        name (str): The application name used by Django
        verbose_name (str): Human-readable name for the application
    zdjango.db.models.BigAutoFieldzapps.jingleszJingle Detectionc                 C   s&   zddl }W n tk
r    Y nX dS )a  
        Perform initialization when the application is ready.
        
        This method is called once Django has loaded all applications
        and models. It imports signal handlers to set up automatic
        jingle detection and ad break processing.
        r   N)Zapps.jingles.signalsÚImportError)ÚselfÚapps© r   ú5/var/www/html/JingleDetector/src/apps/jingles/apps.pyÚready"   s    	zJinglesConfig.readyN)Ú__name__Ú
__module__Ú__qualname__Ú__doc__Údefault_auto_fieldÚnameÚverbose_namer	   r   r   r   r   r      s
   r   N)r   Údjango.appsr   r   r   r   r   r   Ú<module>   s   