Open-source Arabic Quran search engine that exposes a JSON API with both simple and advanced search (by word, root, translation, and morphology). Self-hostable Python project — the only full-text Quran search engine in the registry.
const res = await fetch(
"https://github.com/assem-ch/alfanous"
);
const data = await res.json();
console.log(data);import requests
res = requests.get(
"https://github.com/assem-ch/alfanous"
)
data = res.json()
print(data)curl -sL "https://github.com/assem-ch/alfanous"