Spaces:
				
			
			
	
			
			
		Sleeping
		
	
	
	
			
			
	
	
	
	
		
		
		Sleeping
		
	File size: 1,775 Bytes
			
			| 999d38e 6418fdf 999d38e ae06636 999d38e ae06636 ac37df1 ae06636 e0ab48f ae06636 999d38e ae06636 2d8b79b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | import gradio as gr
from src.components.utils import load_data, load_css, get_surah_names_list
from src.components.search_tab import create_search_tab
from src.components.statistics_tab import create_statistics_tab
from src.components.surah_tab import create_surah_tab
from src.components.verse_locator_tab import create_verse_locator_tab
def main():
    """
    Main function to create and launch the Quran Explorer application.
    The app provides three main features:
    1. Keyword search across the Quran
    2. Statistical analysis and visualizations
    3. Surah-wise exploration with word clouds
    """
    # Load data
    quran_data, surah_names = load_data()
    surah_names_list = get_surah_names_list(surah_names)
    
    # Create the Gradio interface
    with gr.Blocks(css=load_css()) as iface:
        gr.Markdown("""
        # Quran Explorer
        Welcome to the Quran Explorer application. This tool provides multiple ways to explore 
        and understand the Holy Quran through its English translation. Use the tabs below to:
        - Search for specific words or phrases
        - View statistical insights and visualizations
        - Read complete Surahs with word cloud visualizations
        """)
        
        # Create tabs
        search_tab = create_search_tab(quran_data)
        statistics_tab = create_statistics_tab(quran_data)
        surah_tab = create_surah_tab(quran_data, surah_names_list)
        surah_counts = quran_data['Surah Name'].value_counts().reset_index()
        surah_counts.columns = ['Surah Name', 'Ayah Count']
        verse_locator_tab = create_verse_locator_tab(quran_data, surah_names_list, surah_counts)
    
    # Launch the interface
    iface.launch(share=True)
if __name__ == "__main__":
    main()
     |