gitextract_ie97inb_/ ├── .gitignore ├── CONTRIBUTING.md ├── CodeConventions/ │ ├── README.md │ └── example_google.py ├── DOCUMENTATION.md ├── LICENSE ├── QuranCorpus/ │ └── quran-uthmani.xml ├── README.md ├── __init__.py ├── core/ │ ├── __init__.py │ └── pyquran.py ├── documentation/ │ ├── TODO │ ├── __init__.py │ ├── auto_gen_docs.py │ ├── docs/ │ │ ├── Alphabetical-Systems.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── Filtering-Special-Recitation-Symbols.md │ │ ├── Home.md │ │ ├── PyQuran-Founders.md │ │ ├── Wiki-Home.md │ │ ├── analysis_tools.md │ │ ├── arabic_tools.md │ │ ├── authors.md │ │ ├── code_conventions.md │ │ ├── dictFrec.md │ │ ├── example_google.md │ │ ├── index.md │ │ ├── maintainers.md │ │ ├── methods guide.md │ │ ├── quran_tools.md │ │ └── quran_tools_template.md │ ├── generate.sh │ ├── git-adding.sh │ ├── mkdocs.yml │ ├── sources/ │ │ ├── analysis_tools_template.md │ │ ├── arabic_tools_template.md │ │ └── quran_tools_template.md │ └── templates/ │ ├── analysis_tools_template.md │ ├── arabic_tools_template.md │ └── quran_tools_template.md ├── testing/ │ ├── run_test.sh │ ├── test_pyquran.py │ ├── test_quran.py │ ├── test_searchHelper.py │ └── test_shape_systems.py └── tools/ ├── AI.py ├── __init__.py ├── arabic.py ├── buckwalter.py ├── error.py ├── filtering.py ├── quran.py ├── searchHelper.py └── shapeHelper.py