Skip to content

Instantly share code, notes, and snippets.

@ihfazhillah
Created October 7, 2016 23:11
Show Gist options
  • Save ihfazhillah/a2e5cdeb7ea106b37bee49b2c0da671c to your computer and use it in GitHub Desktop.
Save ihfazhillah/a2e5cdeb7ea106b37bee49b2c0da671c to your computer and use it in GitHub Desktop.
simple scraper untuk mendapatkan daftar surat, dan jumlah ayat. Return json file.
#!/usr/bin/python3
"""Scrape alquran surahs into json format"""
import requests
from bs4 import BeautifulSoup
import json
URL = "http://www.islamology.com/quran/fahres.asp"
def get_response(url=URL):
"""get reponse object"""
resp = requests.get(url)
return resp
def parse_response(response):
"""parse response data into dict object
dict(surah_no, surah_name, surah_juz, surah_page,
surah_ayat, surah_type)"""
soup = BeautifulSoup(response.content, 'html.parser')
fahrasah = soup.select("tbody.Common_TBODY > tr")
result = list()
for f in list(fahrasah):
data = f.select("td")
d = dict(surah_no=int(data[0].text),
surah_name=data[1].text.strip(),
surah_juz=data[2].text.strip(),
surah_page=int(data[3].text),
surah_ayat=int(data[4].text),
surah_type=data[5].text.strip())
result.append(d)
return result
def dump_json(data, fn, indent=4):
"""dump data into json file"""
with open(fn, "w") as f:
json.dump(data, f, indent=indent, ensure_ascii=False)
if __name__ == '__main__':
rsp = get_response()
data = parse_response(rsp)
dump_json(data, "daftar_surat.json")
@ihfazhillah
Copy link
Author

Hasil

[
    {
        "surah_ayat": 7,
        "surah_page": 1,
        "surah_juz": "الجزء الأول",
        "surah_type": "مكيّة",
        "surah_no": 1,
        "surah_name": "الفاتحة"
    },
    {
        "surah_ayat": 286,
        "surah_page": 2,
        "surah_juz": "الجزء الأول",
        "surah_type": "مدنيّة",
        "surah_no": 2,
        "surah_name": "البقرة"
    },
    {
        "surah_ayat": 200,
        "surah_page": 50,
        "surah_juz": "الجزء الثالث",
        "surah_type": "مدنيّة",
        "surah_no": 3,
        "surah_name": "آل عمران"
    },
    {
        "surah_ayat": 176,
        "surah_page": 77,
        "surah_juz": "الجزء الرابع",
        "surah_type": "مدنيّة",
        "surah_no": 4,
        "surah_name": "النساء"
    },
    {
        "surah_ayat": 120,
        "surah_page": 106,
        "surah_juz": "الجزء السادس",
        "surah_type": "مدنيّة",
        "surah_no": 5,
        "surah_name": "المائدة"
    },
    {
        "surah_ayat": 165,
        "surah_page": 128,
        "surah_juz": "الجزء السابع",
        "surah_type": "مكيّة",
        "surah_no": 6,
        "surah_name": "الأنعام"
    },
    {
        "surah_ayat": 206,
        "surah_page": 151,
        "surah_juz": "الجزء الثامن",
        "surah_type": "مكيّة",
        "surah_no": 7,
        "surah_name": "الأعراف"
    },
    {
        "surah_ayat": 75,
        "surah_page": 177,
        "surah_juz": "الجزء التاسع",
        "surah_type": "مدنيّة",
        "surah_no": 8,
        "surah_name": "الأنفال"
    },
    {
        "surah_ayat": 129,
        "surah_page": 187,
        "surah_juz": "الجزء العاشر",
        "surah_type": "مدنيّة",
        "surah_no": 9,
        "surah_name": "التوبة"
    },
    {
        "surah_ayat": 109,
        "surah_page": 208,
        "surah_juz": "الجزء الحادي عشر",
        "surah_type": "مكيّة",
        "surah_no": 10,
        "surah_name": "يونس"
    },
    {
        "surah_ayat": 123,
        "surah_page": 221,
        "surah_juz": "الجزء الحادي عشر",
        "surah_type": "مكيّة",
        "surah_no": 11,
        "surah_name": "هود"
    },
    {
        "surah_ayat": 111,
        "surah_page": 235,
        "surah_juz": "الجزء الثاني عشر",
        "surah_type": "مكيّة",
        "surah_no": 12,
        "surah_name": "يوسف"
    },
    {
        "surah_ayat": 43,
        "surah_page": 249,
        "surah_juz": "الجزء الثالث عشر",
        "surah_type": "مدنيّة",
        "surah_no": 13,
        "surah_name": "الرعد"
    },
    {
        "surah_ayat": 52,
        "surah_page": 255,
        "surah_juz": "الجزء الثالث عشر",
        "surah_type": "مكيّة",
        "surah_no": 14,
        "surah_name": "إبراهيم"
    },
    {
        "surah_ayat": 99,
        "surah_page": 262,
        "surah_juz": "الجزء الرابع عشر",
        "surah_type": "مكيّة",
        "surah_no": 15,
        "surah_name": "الحجر"
    },
    {
        "surah_ayat": 128,
        "surah_page": 267,
        "surah_juz": "الجزء الرابع عشر",
        "surah_type": "مكيّة",
        "surah_no": 16,
        "surah_name": "النحل"
    },
    {
        "surah_ayat": 111,
        "surah_page": 282,
        "surah_juz": "الجزء الخامس عشر",
        "surah_type": "مدنيّة",
        "surah_no": 17,
        "surah_name": "الإسراء"
    },
    {
        "surah_ayat": 110,
        "surah_page": 293,
        "surah_juz": "الجزء الخامس عشر",
        "surah_type": "مدنيّة",
        "surah_no": 18,
        "surah_name": "الكهف"
    },
    {
        "surah_ayat": 98,
        "surah_page": 305,
        "surah_juz": "الجزء السادس عشر",
        "surah_type": "مدنيّة",
        "surah_no": 19,
        "surah_name": "مريم"
    },
    {
        "surah_ayat": 135,
        "surah_page": 312,
        "surah_juz": "الجزء السادس عشر",
        "surah_type": "مدنيّة",
        "surah_no": 20,
        "surah_name": "طه"
    },
    {
        "surah_ayat": 112,
        "surah_page": 322,
        "surah_juz": "الجزء السابع عشر",
        "surah_type": "مدنيّة",
        "surah_no": 21,
        "surah_name": "الأنبياء"
    },
    {
        "surah_ayat": 78,
        "surah_page": 332,
        "surah_juz": "الجزء السابع عشر",
        "surah_type": "مدنيّة",
        "surah_no": 22,
        "surah_name": "الحج"
    },
    {
        "surah_ayat": 118,
        "surah_page": 342,
        "surah_juz": "الجزء الثامن عشر",
        "surah_type": "مدنيّة",
        "surah_no": 23,
        "surah_name": "المؤمنون"
    },
    {
        "surah_ayat": 64,
        "surah_page": 350,
        "surah_juz": "الجزء الثامن عشر",
        "surah_type": "مدنيّة",
        "surah_no": 24,
        "surah_name": "النور"
    },
    {
        "surah_ayat": 77,
        "surah_page": 359,
        "surah_juz": "الجزء الثامن عشر",
        "surah_type": "مدنيّة",
        "surah_no": 25,
        "surah_name": "الفرقان"
    },
    {
        "surah_ayat": 227,
        "surah_page": 367,
        "surah_juz": "الجزء التاسع عشر",
        "surah_type": "مدنيّة",
        "surah_no": 26,
        "surah_name": "الشعراء"
    },
    {
        "surah_ayat": 93,
        "surah_page": 377,
        "surah_juz": "الجزء التاسع عشر",
        "surah_type": "مدنيّة",
        "surah_no": 27,
        "surah_name": "النمل"
    },
    {
        "surah_ayat": 88,
        "surah_page": 385,
        "surah_juz": "الجزء العشرون",
        "surah_type": "مدنيّة",
        "surah_no": 28,
        "surah_name": "القصص"
    },
    {
        "surah_ayat": 69,
        "surah_page": 396,
        "surah_juz": "الجزء العشرون",
        "surah_type": "مدنيّة",
        "surah_no": 29,
        "surah_name": "العنكبوت"
    },
    {
        "surah_ayat": 60,
        "surah_page": 404,
        "surah_juz": "الجزء الحادي والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 30,
        "surah_name": "الروم"
    },
    {
        "surah_ayat": 34,
        "surah_page": 411,
        "surah_juz": "الجزء الحادي والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 31,
        "surah_name": "لقمان"
    },
    {
        "surah_ayat": 30,
        "surah_page": 415,
        "surah_juz": "الجزء الحادي والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 32,
        "surah_name": "السجدة"
    },
    {
        "surah_ayat": 73,
        "surah_page": 418,
        "surah_juz": "الجزء الحادي والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 33,
        "surah_name": "الأحزاب"
    },
    {
        "surah_ayat": 54,
        "surah_page": 428,
        "surah_juz": "الجزء الثاني والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 34,
        "surah_name": "سبأ"
    },
    {
        "surah_ayat": 45,
        "surah_page": 434,
        "surah_juz": "الجزء الثاني والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 35,
        "surah_name": "فاطر"
    },
    {
        "surah_ayat": 83,
        "surah_page": 440,
        "surah_juz": "الجزء الثاني والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 36,
        "surah_name": "يس"
    },
    {
        "surah_ayat": 181,
        "surah_page": 446,
        "surah_juz": "الجزء الثالث والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 37,
        "surah_name": "الصافات"
    },
    {
        "surah_ayat": 88,
        "surah_page": 453,
        "surah_juz": "الجزء الثالث والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 38,
        "surah_name": "ص"
    },
    {
        "surah_ayat": 75,
        "surah_page": 458,
        "surah_juz": "الجزء الثالث والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 39,
        "surah_name": "الزمر"
    },
    {
        "surah_ayat": 85,
        "surah_page": 467,
        "surah_juz": "الجزء الرابع والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 40,
        "surah_name": "غافر"
    },
    {
        "surah_ayat": 54,
        "surah_page": 477,
        "surah_juz": "الجزء الرابع والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 41,
        "surah_name": "فصلت"
    },
    {
        "surah_ayat": 53,
        "surah_page": 483,
        "surah_juz": "الجزء الخامس والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 42,
        "surah_name": "الشورى"
    },
    {
        "surah_ayat": 89,
        "surah_page": 489,
        "surah_juz": "الجزء الخامس والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 43,
        "surah_name": "الزخرف"
    },
    {
        "surah_ayat": 59,
        "surah_page": 496,
        "surah_juz": "الجزء الخامس والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 44,
        "surah_name": "الدخان"
    },
    {
        "surah_ayat": 37,
        "surah_page": 499,
        "surah_juz": "الجزء الخامس والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 45,
        "surah_name": "الجاثية"
    },
    {
        "surah_ayat": 35,
        "surah_page": 502,
        "surah_juz": "الجزء الخامس والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 46,
        "surah_name": "الأحقاف"
    },
    {
        "surah_ayat": 35,
        "surah_page": 502,
        "surah_juz": "الجزء السادس والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 46,
        "surah_name": "الأحقاف"
    },
    {
        "surah_ayat": 38,
        "surah_page": 507,
        "surah_juz": "الجزء السادس والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 47,
        "surah_name": "محمد"
    },
    {
        "surah_ayat": 29,
        "surah_page": 511,
        "surah_juz": "الجزء السادس والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 48,
        "surah_name": "الفتح"
    },
    {
        "surah_ayat": 18,
        "surah_page": 515,
        "surah_juz": "الجزء السادس والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 49,
        "surah_name": "الحجرات"
    },
    {
        "surah_ayat": 45,
        "surah_page": 518,
        "surah_juz": "الجزء السادس والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 50,
        "surah_name": "ق"
    },
    {
        "surah_ayat": 60,
        "surah_page": 520,
        "surah_juz": "الجزء السادس والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 51,
        "surah_name": "الذاريات"
    },
    {
        "surah_ayat": 49,
        "surah_page": 523,
        "surah_juz": "الجزء السابع والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 52,
        "surah_name": "الطور"
    },
    {
        "surah_ayat": 62,
        "surah_page": 526,
        "surah_juz": "الجزء السابع والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 53,
        "surah_name": "النجم"
    },
    {
        "surah_ayat": 55,
        "surah_page": 528,
        "surah_juz": "الجزء السابع والعشرون",
        "surah_type": "مكيّة",
        "surah_no": 54,
        "surah_name": "القمر"
    },
    {
        "surah_ayat": 78,
        "surah_page": 531,
        "surah_juz": "الجزء السابع والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 55,
        "surah_name": "الرحمن"
    },
    {
        "surah_ayat": 96,
        "surah_page": 534,
        "surah_juz": "الجزء السابع والعشرون",
        "surah_type": "مكيّة",
        "surah_no": 56,
        "surah_name": "الواقعة"
    },
    {
        "surah_ayat": 29,
        "surah_page": 537,
        "surah_juz": "الجزء السابع والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 57,
        "surah_name": "الحديد"
    },
    {
        "surah_ayat": 22,
        "surah_page": 542,
        "surah_juz": "الجزء الثامن والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 58,
        "surah_name": "المجادلة"
    },
    {
        "surah_ayat": 24,
        "surah_page": 545,
        "surah_juz": "الجزء الثامن والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 59,
        "surah_name": "الحشر"
    },
    {
        "surah_ayat": 13,
        "surah_page": 549,
        "surah_juz": "الجزء الثامن والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 60,
        "surah_name": "الممتحنة"
    },
    {
        "surah_ayat": 14,
        "surah_page": 551,
        "surah_juz": "الجزء الثامن والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 61,
        "surah_name": "الصف"
    },
    {
        "surah_ayat": 11,
        "surah_page": 553,
        "surah_juz": "الجزء الثامن والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 62,
        "surah_name": "الجمعة"
    },
    {
        "surah_ayat": 11,
        "surah_page": 554,
        "surah_juz": "الجزء الثامن والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 63,
        "surah_name": "المنافقون"
    },
    {
        "surah_ayat": 18,
        "surah_page": 556,
        "surah_juz": "الجزء الثامن والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 64,
        "surah_name": "التغابن"
    },
    {
        "surah_ayat": 12,
        "surah_page": 558,
        "surah_juz": "الجزء الثامن والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 65,
        "surah_name": "الطلاق"
    },
    {
        "surah_ayat": 12,
        "surah_page": 560,
        "surah_juz": "الجزء الثامن والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 66,
        "surah_name": "التحريم"
    },
    {
        "surah_ayat": 30,
        "surah_page": 562,
        "surah_juz": "الجزء التاسع والعشرون",
        "surah_type": "مكيّة",
        "surah_no": 67,
        "surah_name": "الملك"
    },
    {
        "surah_ayat": 52,
        "surah_page": 564,
        "surah_juz": "الجزء التاسع والعشرون",
        "surah_type": "مكيّة",
        "surah_no": 68,
        "surah_name": "القلم"
    },
    {
        "surah_ayat": 52,
        "surah_page": 566,
        "surah_juz": "الجزء التاسع والعشرون",
        "surah_type": "مكيّة",
        "surah_no": 69,
        "surah_name": "الحاقة"
    },
    {
        "surah_ayat": 44,
        "surah_page": 568,
        "surah_juz": "الجزء التاسع والعشرون",
        "surah_type": "مكيّة",
        "surah_no": 70,
        "surah_name": "المعارج"
    },
    {
        "surah_ayat": 28,
        "surah_page": 570,
        "surah_juz": "الجزء التاسع والعشرون",
        "surah_type": "مكيّة",
        "surah_no": 71,
        "surah_name": "نوح"
    },
    {
        "surah_ayat": 28,
        "surah_page": 572,
        "surah_juz": "الجزء التاسع والعشرون",
        "surah_type": "مكيّة",
        "surah_no": 72,
        "surah_name": "الجن"
    },
    {
        "surah_ayat": 20,
        "surah_page": 574,
        "surah_juz": "الجزء التاسع والعشرون",
        "surah_type": "مكيّة",
        "surah_no": 73,
        "surah_name": "المزّمِّل"
    },
    {
        "surah_ayat": 56,
        "surah_page": 575,
        "surah_juz": "الجزء التاسع والعشرون",
        "surah_type": "مكيّة",
        "surah_no": 74,
        "surah_name": "المدّثر"
    },
    {
        "surah_ayat": 40,
        "surah_page": 577,
        "surah_juz": "الجزء التاسع والعشرون",
        "surah_type": "مكيّة",
        "surah_no": 75,
        "surah_name": "القيامة"
    },
    {
        "surah_ayat": 31,
        "surah_page": 578,
        "surah_juz": "الجزء التاسع والعشرون",
        "surah_type": "مدنيّة",
        "surah_no": 76,
        "surah_name": "الإنسان"
    },
    {
        "surah_ayat": 50,
        "surah_page": 580,
        "surah_juz": "الجزء التاسع والعشرون",
        "surah_type": "مكيّة",
        "surah_no": 77,
        "surah_name": "المرسلات"
    },
    {
        "surah_ayat": 40,
        "surah_page": 582,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 78,
        "surah_name": "النبأ"
    },
    {
        "surah_ayat": 46,
        "surah_page": 583,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 79,
        "surah_name": "النازعات"
    },
    {
        "surah_ayat": 42,
        "surah_page": 585,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 80,
        "surah_name": "عبس"
    },
    {
        "surah_ayat": 29,
        "surah_page": 586,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 81,
        "surah_name": "التكوير"
    },
    {
        "surah_ayat": 19,
        "surah_page": 587,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 82,
        "surah_name": "الإنفطار"
    },
    {
        "surah_ayat": 36,
        "surah_page": 587,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 83,
        "surah_name": "المطففين"
    },
    {
        "surah_ayat": 25,
        "surah_page": 589,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 84,
        "surah_name": "الانشقاق"
    },
    {
        "surah_ayat": 22,
        "surah_page": 590,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 85,
        "surah_name": "البروج"
    },
    {
        "surah_ayat": 17,
        "surah_page": 591,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 86,
        "surah_name": "الطارق"
    },
    {
        "surah_ayat": 19,
        "surah_page": 591,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 87,
        "surah_name": "الأعلى"
    },
    {
        "surah_ayat": 26,
        "surah_page": 592,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 88,
        "surah_name": "الغاشية"
    },
    {
        "surah_ayat": 30,
        "surah_page": 593,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 89,
        "surah_name": "الفجر"
    },
    {
        "surah_ayat": 20,
        "surah_page": 594,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 90,
        "surah_name": "البلد"
    },
    {
        "surah_ayat": 15,
        "surah_page": 595,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 91,
        "surah_name": "الشمس"
    },
    {
        "surah_ayat": 21,
        "surah_page": 595,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 92,
        "surah_name": "الليل"
    },
    {
        "surah_ayat": 11,
        "surah_page": 596,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 93,
        "surah_name": "الضحى"
    },
    {
        "surah_ayat": 8,
        "surah_page": 596,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 94,
        "surah_name": "الشرح"
    },
    {
        "surah_ayat": 8,
        "surah_page": 597,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 95,
        "surah_name": "التين"
    },
    {
        "surah_ayat": 19,
        "surah_page": 597,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 96,
        "surah_name": "العلق"
    },
    {
        "surah_ayat": 5,
        "surah_page": 598,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 97,
        "surah_name": "القدر"
    },
    {
        "surah_ayat": 8,
        "surah_page": 598,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مدنيّة",
        "surah_no": 98,
        "surah_name": "البينة"
    },
    {
        "surah_ayat": 8,
        "surah_page": 599,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مدنيّة",
        "surah_no": 99,
        "surah_name": "الزلزلة"
    },
    {
        "surah_ayat": 11,
        "surah_page": 599,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 100,
        "surah_name": "العاديات"
    },
    {
        "surah_ayat": 11,
        "surah_page": 600,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 101,
        "surah_name": "القارعة"
    },
    {
        "surah_ayat": 8,
        "surah_page": 600,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 102,
        "surah_name": "التكاثر"
    },
    {
        "surah_ayat": 3,
        "surah_page": 601,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 103,
        "surah_name": "العصر"
    },
    {
        "surah_ayat": 9,
        "surah_page": 601,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 104,
        "surah_name": "الهُمَزَة"
    },
    {
        "surah_ayat": 5,
        "surah_page": 601,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 105,
        "surah_name": "الفيل"
    },
    {
        "surah_ayat": 4,
        "surah_page": 602,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 106,
        "surah_name": "قريش"
    },
    {
        "surah_ayat": 7,
        "surah_page": 602,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 107,
        "surah_name": "الماعون"
    },
    {
        "surah_ayat": 3,
        "surah_page": 602,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 108,
        "surah_name": "الكوثر"
    },
    {
        "surah_ayat": 6,
        "surah_page": 603,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 109,
        "surah_name": "الكافرون"
    },
    {
        "surah_ayat": 3,
        "surah_page": 603,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مدنيّة",
        "surah_no": 110,
        "surah_name": "النصر"
    },
    {
        "surah_ayat": 5,
        "surah_page": 603,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 111,
        "surah_name": "المسد"
    },
    {
        "surah_ayat": 4,
        "surah_page": 604,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 112,
        "surah_name": "الإخلاص"
    },
    {
        "surah_ayat": 5,
        "surah_page": 604,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مدنيّة",
        "surah_no": 113,
        "surah_name": "الفلق"
    },
    {
        "surah_ayat": 6,
        "surah_page": 604,
        "surah_juz": "الجزء الثلاثون",
        "surah_type": "مكيّة",
        "surah_no": 114,
        "surah_name": "الناس"
    }
]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment