2022-07-11 21:45:17 +02:00
|
|
|
|
## quran-pull
|
2022-04-26 14:12:16 +02:00
|
|
|
|
|
2022-06-17 10:37:57 +02:00
|
|
|
|
This repository contains the holy book, The Qur'an, in its original Arabic and as translations
|
2022-07-10 23:04:06 +02:00
|
|
|
|
in English, Farsi, and Portuguese. The contents are made available in JSON, and SQL files.
|
2022-04-26 14:12:16 +02:00
|
|
|
|
|
2022-07-11 23:08:58 +02:00
|
|
|
|
**Navigation**
|
|
|
|
|
1. [`src/json`directory](#srcjson-directory)
|
|
|
|
|
2. [`src/sql` directory](#srcsql-directory)
|
|
|
|
|
3. [`bin/` directory](#bin-directory)
|
|
|
|
|
|
|
|
|
|
### <a id='srcjson-directory'>`src/json/` directory</a>
|
2022-04-26 14:12:16 +02:00
|
|
|
|
|
2022-07-10 23:04:06 +02:00
|
|
|
|
This section covers the JSON files. Keep scrolling for the SQL section.
|
2022-04-26 14:12:16 +02:00
|
|
|
|
|
2022-07-10 23:04:06 +02:00
|
|
|
|
* The [src/json/ar/](src/json/ar/) directory contains The Qur'an in its original Arabic.
|
2022-06-20 18:37:22 +02:00
|
|
|
|
|
2022-07-10 23:04:06 +02:00
|
|
|
|
* The [src/json/en/](src/json/en/) directory contains an English translation of The Qur'an.
|
2022-06-20 18:37:22 +02:00
|
|
|
|
|
2022-07-10 23:04:06 +02:00
|
|
|
|
* The [src/json/fa/](src/json/fa/) directory contains a Farsi translation of The Qur'an.
|
2022-06-20 18:37:22 +02:00
|
|
|
|
|
2022-07-10 23:04:06 +02:00
|
|
|
|
* The [src/json/pt/](src/json/pt/) directory contains a Portuguese translation of The Qur'an.
|
2022-04-26 21:34:37 +02:00
|
|
|
|
|
2022-07-11 21:45:17 +02:00
|
|
|
|
#### Arabic
|
2022-04-26 21:34:37 +02:00
|
|
|
|
|
2022-07-10 23:04:06 +02:00
|
|
|
|
* [src/json/ar/](src/json/ar/)
|
2022-04-26 14:12:16 +02:00
|
|
|
|
|
|
|
|
|
Each JSON file represents a chapter, or surah - in its original Arabic.
|
2022-07-10 23:04:06 +02:00
|
|
|
|
For example, [src/json/ar/1.json](src/json/ar/1.json) contains Al-Fatihah.
|
2022-06-17 10:37:57 +02:00
|
|
|
|
The structure of the file can be described as an array of arrays, with
|
|
|
|
|
each array representing a verse, or ayah.
|
2022-04-26 14:12:16 +02:00
|
|
|
|
For example:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
<verse number>,
|
|
|
|
|
<verse contents>
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
<verse number>,
|
|
|
|
|
<verse contents>
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
<verse number>,
|
|
|
|
|
<verse contents>
|
|
|
|
|
],
|
|
|
|
|
/* etc... */
|
|
|
|
|
]
|
|
|
|
|
```
|
|
|
|
|
|
2022-07-11 21:45:17 +02:00
|
|
|
|
#### English
|
2022-04-26 14:12:16 +02:00
|
|
|
|
|
2022-07-10 23:04:06 +02:00
|
|
|
|
* [src/json/en/](src/json/en/)
|
2022-04-26 14:12:16 +02:00
|
|
|
|
|
2022-04-26 22:07:25 +02:00
|
|
|
|
Each JSON file represents a chapter, or surah - as an English translation.
|
|
|
|
|
The structure of the file can be described as an array of arrays,
|
|
|
|
|
with each array representing a verse, or ayah. For example, consider
|
2022-07-10 23:04:06 +02:00
|
|
|
|
the English translation of Al-Fatihah ([src/json/en/1.json](src/json/en/1.json)):
|
2022-04-26 14:12:16 +02:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
1,
|
|
|
|
|
"In the Name of Allah—the Most Compassionate, Most Merciful."
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
2,
|
|
|
|
|
"All praise is for Allah—Lord of all worlds,"
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
3,
|
|
|
|
|
"the Most Compassionate, Most Merciful,"
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
4,
|
|
|
|
|
"Master of the Day of Judgment."
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
5,
|
|
|
|
|
"You ˹alone˺ we worship and You ˹alone˺ we ask for help."
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
6,
|
|
|
|
|
"Guide us along the Straight Path,"
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
7,
|
|
|
|
|
"the Path of those You have blessed—not those You are displeased with, or those who are astray. "
|
|
|
|
|
]
|
|
|
|
|
]
|
|
|
|
|
```
|
|
|
|
|
|
2022-07-11 21:45:17 +02:00
|
|
|
|
#### Farsi
|
2022-06-17 10:37:57 +02:00
|
|
|
|
|
2022-07-10 23:04:06 +02:00
|
|
|
|
* [src/json/fa/](src/json/fa/)
|
2022-06-17 10:37:57 +02:00
|
|
|
|
|
|
|
|
|
Each JSON file represents a chapter, or surah - as a Farsi translation.
|
2022-07-10 23:04:06 +02:00
|
|
|
|
For example, [src/json/fa/1.json](src/json/fa/1.json) contains Al-Fatihah.
|
2022-06-17 10:37:57 +02:00
|
|
|
|
The structure of the file can be described as an array of arrays, with
|
|
|
|
|
each array representing a verse, or ayah.
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
<verse number>,
|
|
|
|
|
<verse contents>
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
<verse number>,
|
|
|
|
|
<verse contents>
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
<verse number>,
|
|
|
|
|
<verse contents>
|
|
|
|
|
],
|
|
|
|
|
/* etc... */
|
|
|
|
|
]
|
|
|
|
|
```
|
|
|
|
|
|
2022-07-11 21:45:17 +02:00
|
|
|
|
#### Portuguese
|
2022-06-19 00:13:03 +02:00
|
|
|
|
|
2022-07-10 23:04:06 +02:00
|
|
|
|
* [src/json/pt/](src/json/pt/)
|
2022-06-19 00:13:03 +02:00
|
|
|
|
|
|
|
|
|
Each JSON file represents a chapter, or surah - as a Portuguese translation.
|
2022-07-10 23:04:06 +02:00
|
|
|
|
For example, [src/pt/1.json](src/json/pt/1.json) contains Al-Fatihah.
|
2022-06-19 00:13:03 +02:00
|
|
|
|
The structure of the file can be described as an array of arrays, with each array
|
|
|
|
|
representing a verse, or ayah.
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
<verse number>,
|
|
|
|
|
<verse contents>
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
<verse number>,
|
|
|
|
|
<verse contents>
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
<verse number>,
|
|
|
|
|
<verse contents>
|
|
|
|
|
],
|
|
|
|
|
/* etc... */
|
|
|
|
|
]
|
|
|
|
|
```
|
|
|
|
|
|
2022-07-11 23:08:58 +02:00
|
|
|
|
### <a id='srcsql-directory'>`src/sql/` directory</a>
|
2022-07-10 23:04:06 +02:00
|
|
|
|
|
|
|
|
|
This section covers the SQL files.
|
|
|
|
|
|
|
|
|
|
* The [src/sql/schema.sql](src/sql/schema.sql) defines the schema of the database. <br>
|
|
|
|
|
The schema is composed of three tables: `qurans`, `chapters`, and `verses`.
|
|
|
|
|
|
|
|
|
|
* The [src/sql/seed.sql](src/sql/seed.sql) populates the contents of the database. <br>
|
|
|
|
|
The languages included are Arabic, English, Farsi, and Portuguese.
|
|
|
|
|
|
2022-07-11 21:45:17 +02:00
|
|
|
|
#### SQLite3 example
|
2022-07-10 23:04:06 +02:00
|
|
|
|
|
|
|
|
|
The example demonstrates how the SQL files mentioned above can be used to create a
|
|
|
|
|
fully populated database, and then how to query the database. It is assumed that the
|
|
|
|
|
repository has been cloned or downloaded (see below), and that "sqlite3" is started
|
|
|
|
|
from the root of the repository.
|
|
|
|
|
|
|
|
|
|
**1. $HOME/.sqliterc**
|
|
|
|
|
|
|
|
|
|
For identical results, it is recommended that the `$HOME/.sqlitrc` file has the following
|
|
|
|
|
contents:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
pragma FOREIGN_KEYS = on;
|
|
|
|
|
.headers on
|
|
|
|
|
.mode column
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**2. Execute `src/sql/schema.sql`**
|
|
|
|
|
|
|
|
|
|
Start SQLite3 from the command line, and then execute `.read src/sql/schema.sql`:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ sqlite3
|
|
|
|
|
SQLite version 3.39.0 2022-06-25 14:57:57
|
|
|
|
|
Enter ".help" for usage hints.
|
|
|
|
|
Connected to a transient in-memory database.
|
|
|
|
|
Use ".open FILENAME" to reopen on a persistent database.
|
|
|
|
|
sqlite> .read src/sql/schema.sql
|
|
|
|
|
sqlite>
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**3. Execute `src/sql/seed.sql`**
|
|
|
|
|
|
|
|
|
|
Within the same sqlite session, execute `.read src/sql/seed.sql`:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sqlite> .read src/sql/seed.sql
|
|
|
|
|
sqlite>
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**4. Query the database**
|
|
|
|
|
|
|
|
|
|
After steps two and three, the database is fully populated and exists in memory / RAM. <br>
|
|
|
|
|
We can now query the database and its contents. The SQL query we will execute fetches the
|
|
|
|
|
contents of chapter 112 in the English locale (i.e: `en`):
|
|
|
|
|
|
|
|
|
|
```sql
|
|
|
|
|
SELECT qurans.locale,
|
|
|
|
|
chapters.number as chapter_number,
|
|
|
|
|
verses.number as verse_number,
|
|
|
|
|
verses.content from verses
|
|
|
|
|
INNER JOIN qurans ON qurans.id = verses.quran_id
|
|
|
|
|
INNER JOIN chapters ON chapters.id = verses.chapter_id
|
|
|
|
|
WHERE qurans.locale = "en" AND chapters.number = 112;
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The output should look like this:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sqlite> SELECT qurans.locale,
|
|
|
|
|
...> chapters.number as chapter_number,
|
|
|
|
|
...> verses.number as verse_number,
|
|
|
|
|
...> verses.content from verses
|
|
|
|
|
...> INNER JOIN qurans ON qurans.id = verses.quran_id
|
|
|
|
|
...> INNER JOIN chapters ON chapters.id = verses.chapter_id
|
|
|
|
|
...> WHERE qurans.locale = "en" AND chapters.number = 112;
|
|
|
|
|
locale chapter_number verse_number content
|
|
|
|
|
------ -------------- ------------ -----------------------------------------------------
|
|
|
|
|
en 112 1 Say, ˹O Prophet,˺ “He is Allah—One ˹and Indivisible˺;
|
|
|
|
|
en 112 2 Allah—the Sustainer ˹needed by all˺.
|
|
|
|
|
en 112 3 He has never had offspring, nor was He born.
|
|
|
|
|
en 112 4 And there is none comparable to Him.”
|
|
|
|
|
```
|
|
|
|
|
|
2022-07-11 23:08:58 +02:00
|
|
|
|
### <a id='bin-directory'>`bin/` directory</a>
|
2022-04-26 21:34:37 +02:00
|
|
|
|
|
2022-07-10 23:04:06 +02:00
|
|
|
|
The [bin/](bin/) directory contains scripts that generate the
|
2022-04-26 21:34:37 +02:00
|
|
|
|
contents of the [src/](src/) directory:
|
|
|
|
|
|
|
|
|
|
* [bin/pull-arabic](bin/pull-arabic) <br>
|
2022-07-10 23:04:06 +02:00
|
|
|
|
This script is responsible for populating [src/json/ar/](src/json/ar/).
|
2022-04-26 21:34:37 +02:00
|
|
|
|
|
|
|
|
|
* [bin/pull-english](bin/pull-english) <br>
|
2022-07-10 23:04:06 +02:00
|
|
|
|
This script is responsible for populating [src/json/en/](src/json/en/).
|
2022-04-26 21:34:37 +02:00
|
|
|
|
|
2022-06-17 10:37:57 +02:00
|
|
|
|
* [bin/pull-farsi](bin/pull-farsi) <br>
|
2022-07-10 23:04:06 +02:00
|
|
|
|
This script is responsible for populating [src/json/fa/](src/json/fa/).
|
2022-06-17 10:37:57 +02:00
|
|
|
|
|
2022-06-19 00:13:03 +02:00
|
|
|
|
* [bin/pull-portuguese](bin/pull-portuguese) <br>
|
2022-07-10 23:04:06 +02:00
|
|
|
|
This script is responsible for populating [src/json/pt/](src/json/pt/).
|
|
|
|
|
|
|
|
|
|
* [bin/create-sql-seed-file](bin/create-sql-seed-file) <br>
|
|
|
|
|
This script creates [src/sql/seed.sql](src/sql/seed.sql), and uses the contents of
|
|
|
|
|
[src/json/](src/json/) to do so.
|
2022-06-19 00:13:03 +02:00
|
|
|
|
|
2022-07-10 23:04:06 +02:00
|
|
|
|
**Note #1**
|
|
|
|
|
|
|
|
|
|
By default it is not neccessary to run these scripts because the contents of `src/` is included in
|
|
|
|
|
the repository already.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
**Note #2**
|
2022-04-26 21:34:37 +02:00
|
|
|
|
|
|
|
|
|
The scripts are written in [Ruby v3.1.0+](https://www.ruby-lang.org). <br>
|
2022-06-19 00:13:03 +02:00
|
|
|
|
The ["pull-english"](bin/pull-english), ["pull-farsi"](bin/pull-farsi) and
|
|
|
|
|
["pull-portuguese"](bin/pull-portuguese) scripts depend on the ["pull-arabic"](bin/pull-arabic)
|
|
|
|
|
script being run first. The script dependencies can be installed by
|
|
|
|
|
running `gem install -g gem.deps.rb` from the root of the repository.
|
2022-04-27 01:57:03 +02:00
|
|
|
|
## Download
|
|
|
|
|
|
|
|
|
|
For those of you who don't have access to, or know how to use "git",
|
2022-07-11 21:46:44 +02:00
|
|
|
|
a zip file of the repository is provided for download: [download zip file](https://github.com/ReflectedLight/The-Qur-an/archive/refs/tags/v0.4.0.zip).
|
2022-04-27 01:57:03 +02:00
|
|
|
|
|
2022-07-11 21:45:17 +02:00
|
|
|
|
### Credit, and thanks
|
2022-04-26 14:12:16 +02:00
|
|
|
|
|
2022-04-26 22:07:25 +02:00
|
|
|
|
The content of the [src/](src/) directory was automatically generated
|
2022-04-26 21:34:37 +02:00
|
|
|
|
thanks to the following websites:
|
2022-04-26 14:12:16 +02:00
|
|
|
|
|
2022-04-26 21:34:37 +02:00
|
|
|
|
* https://sacred-texts.com - for the original Arabic.
|
|
|
|
|
* https://quran.com - for the English translation.
|
2022-06-19 00:13:03 +02:00
|
|
|
|
* https://al-quran.cc - for the Farsi, and Portuguese translations.
|
2022-05-29 19:27:59 +02:00
|
|
|
|
|
2022-07-11 21:45:17 +02:00
|
|
|
|
### License
|
2022-05-29 19:27:59 +02:00
|
|
|
|
|
2022-06-17 10:37:57 +02:00
|
|
|
|
This software is released into the Public Domain.
|