SYMBOL INDEX (110 symbols across 13 files) FILE: CodeConventions/example_google.py function function_with_types_in_docstring (line 46) | def function_with_types_in_docstring(param1, param2): function function_with_pep484_type_annotations (line 66) | def function_with_pep484_type_annotations(param1: int, param2: str) -> b... function module_level_function (line 79) | def module_level_function(param1, param2=None, *args, **kwargs): function example_generator (line 133) | def example_generator(n): class ExampleError (line 154) | class ExampleError(Exception): method __init__ (line 176) | def __init__(self, msg, code): class ExampleClass (line 181) | class ExampleClass(object): method __init__ (line 198) | def __init__(self, param1, param2, param3): method readonly_property (line 228) | def readonly_property(self): method readwrite_property (line 233) | def readwrite_property(self): method readwrite_property (line 243) | def readwrite_property(self, value): method example_method (line 246) | def example_method(self, param1, param2): method __special__ (line 262) | def __special__(self): method __special_without_docstring__ (line 278) | def __special_without_docstring__(self): method _private (line 281) | def _private(self): method _private_without_docstring (line 296) | def _private_without_docstring(self): FILE: core/pyquran.py function parse_sura (line 51) | def parse_sura(n, alphabets=['ل', 'ب']): function get_frequency (line 108) | def get_frequency(sentence): function generate_frequency_dictionary (line 136) | def generate_frequency_dictionary(suraNumber=None): function check_sura_with_frequency (line 174) | def check_sura_with_frequency(sura_num,freq_dec): function sort_dictionary_by_similarity (line 212) | def sort_dictionary_by_similarity(frequency_dictionary,threshold=0.8): function generate_latex_table (line 289) | def generate_latex_table(dictionary,filename,location="."): function shape (line 367) | def shape(system): function count_rasm (line 415) | def count_rasm(text, system=None): function get_verse_count (line 476) | def get_verse_count(surah): function count_token (line 492) | def count_token(text): function grouping_letter_diacritics (line 516) | def grouping_letter_diacritics(sentance): function frequency_of_character (line 548) | def frequency_of_character(characters, verse=None, chapterNum=0, verseNu... function get_token (line 638) | def get_token(tokenNum,verseNum,chapterNum,with_tashkeel=False): function search_sequence (line 687) | def search_sequence(sequancesList,verse=None,chapterNum=0,verseNum=0,mod... function search_string_with_tashkeel (line 795) | def search_string_with_tashkeel(string, key): function buckwalter_transliteration (line 844) | def buckwalter_transliteration(string, reverse=False): function get_tashkeel_binary (line 872) | def get_tashkeel_binary(ayah): function factor_alef_mad (line 926) | def factor_alef_mad(sentance): function check_system (line 953) | def check_system(system, index=None): function search_with_pattern (line 1022) | def search_with_pattern(pattern,sentence=None,verseNum=None,chapterNum=N... function frequency_sura_level (line 1119) | def frequency_sura_level(suraNumber): function get_unique_words (line 1165) | def get_unique_words(): function get_words (line 1183) | def get_words(): function frequency_quran_level (line 1201) | def frequency_quran_level(): function prettify (line 1222) | def prettify(elem): function quran_words_frequences_data (line 1230) | def quran_words_frequences_data(fileName): FILE: documentation/auto_gen_docs.py function get_earliest_class_that_defined_member (line 74) | def get_earliest_class_that_defined_member(member, cls): function get_classes_ancestors (line 85) | def get_classes_ancestors(classes): function get_function_signature (line 100) | def get_function_signature(function, method=True): function get_class_signature (line 125) | def get_class_signature(cls): function class_to_docs_link (line 136) | def class_to_docs_link(cls): function class_to_source_link (line 144) | def class_to_source_link(cls): function code_snippet (line 154) | def code_snippet(snippet): function process_class_docstring (line 161) | def process_class_docstring(docstring): function process_function_docstring (line 176) | def process_function_docstring(docstring): FILE: testing/test_pyquran.py class Testing_pyquran (line 28) | class Testing_pyquran(unittest.TestCase): method test_search_string_with_tashkeel (line 30) | def test_search_string_with_tashkeel(self): method test_get_tashkeel_binary (line 37) | def test_get_tashkeel_binary(self): method test_get_frequency (line 56) | def test_get_frequency(self): method test_generate_frequency_dictionary (line 77) | def test_generate_frequency_dictionary(self): method test_check_sura_with_frequency (line 94) | def test_check_sura_with_frequency(self): method test_sort_dictionary_by_similarity (line 101) | def test_sort_dictionary_by_similarity(self): method test_frequency_of_character (line 133) | def test_frequency_of_character(self): method test_get_token (line 142) | def test_get_token(self): method test_search_sequence (line 152) | def test_search_sequence(self): method test_search_with_pattern (line 164) | def test_search_with_pattern(self): method test_count_rasm (line 189) | def test_count_rasm(self): method test_check_system (line 263) | def test_check_system(self): method test_buckwalter_transliteration (line 274) | def test_buckwalter_transliteration(self): method test_get_verse_count (line 290) | def test_get_verse_count(self): method test_count_token (line 296) | def test_count_token(self): FILE: testing/test_quran.py class Testing_quran (line 23) | class Testing_quran(unittest.TestCase): method test_get_sura (line 25) | def test_get_sura(self): method test_fetch_aya (line 36) | def test_fetch_aya(self): FILE: testing/test_searchHelper.py class Testing_searchHelper (line 22) | class Testing_searchHelper(unittest.TestCase): method test_count_spaces_before_index (line 24) | def test_count_spaces_before_index(self): method test_get_string_taskeel (line 30) | def test_get_string_taskeel(self): method test_hellper_get_sequance_positions (line 35) | def test_hellper_get_sequance_positions(self): method test_hellper_search_function (line 40) | def test_hellper_search_function(self): method test_hellper_frequency_of_chars_in_verse (line 107) | def test_hellper_frequency_of_chars_in_verse(self): method test_hamming_distance (line 112) | def test_hamming_distance(self): method test_get_word_num (line 116) | def test_get_word_num(self): method test_hellper_search_with_pattern (line 120) | def test_hellper_search_with_pattern(self): FILE: tools/AI.py function get_alphabet_tashkeel_combination (line 7) | def get_alphabet_tashkeel_combination(tashkeel=arabic.shortharakat): function one_hot (line 39) | def one_hot(string, padding_length=0): FILE: tools/arabic.py class Systems (line 206) | class Systems: method __init__ (line 209) | def __init__(self): function alphabet_excluding (line 238) | def alphabet_excluding(excludedLetters): function treat_as_the_same (line 286) | def treat_as_the_same(listOfLetter, letter, text): function strip_tashkeel (line 305) | def strip_tashkeel(string): function factor_shadda_tanwin (line 329) | def factor_shadda_tanwin(string): FILE: tools/error.py function is_int (line 4) | def is_int(number, message): function is_bool (line 8) | def is_bool(boolean, message): function is_string (line 12) | def is_string(string, message): FILE: tools/filtering.py function get_patterns (line 81) | def get_patterns(): function recitation_symbols_filter (line 107) | def recitation_symbols_filter(string, symbols=recitationSymbols): FILE: tools/quran.py function get_sura (line 27) | def get_sura(sura_number, with_tashkeel=False, basmalah=False): function fetch_aya (line 80) | def fetch_aya(sura_number, aya_number): function retrieve_qruan_as_one_string (line 107) | def retrieve_qruan_as_one_string(): function get_sura_number (line 114) | def get_sura_number(sura_name): function get_sura_name (line 137) | def get_sura_name(sura_number=None): function get_verse (line 168) | def get_verse(sura_number, verse_number, with_tashkeel=False): FILE: tools/searchHelper.py function count_spaces_before_index (line 10) | def count_spaces_before_index(string, index): function get_string_taskeel (line 28) | def get_string_taskeel(string): function hellper_get_sequance_positions (line 46) | def hellper_get_sequance_positions(verse,sequance): function hellper_search_function (line 71) | def hellper_search_function(verse,sequance,verseNum,chapterNum,mode3): function hellper_pre_search_sequance (line 162) | def hellper_pre_search_sequance(sequance,verse=None,chapterNum=0, function hellper_frequency_of_chars_in_verse (line 239) | def hellper_frequency_of_chars_in_verse(verse,charaters): function hamming_distance (line 263) | def hamming_distance(s1, s2): function get_word_num (line 270) | def get_word_num(char_num,sentece): function hellper_search_with_pattern (line 282) | def hellper_search_with_pattern(pattern,sentence_pattern,sentence,ratio=1): FILE: tools/shapeHelper.py function searcher (line 8) | def searcher(system, ch): function convert_text_to_numbers (line 14) | def convert_text_to_numbers(text,alphabetMap): function check_repetation (line 38) | def check_repetation(system):