Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install quran-suras via python pip




quran-suras - API of the mp3quran.net, which helps you to fetch the surahs of the Quran via the surah number or name and more, it belongs to Classifiers:

- License :: OSI Approved
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.7
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: 3.10

When you know about this project and you want to new install quran-suras to support your project or you get trouble as ModuleNotFoundError: No module named "quran-suras" or ImportError: cannot import name "quran-suras" in your project, let follow this tutorial to install quran-suras



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_quran-suras_env

- Active the virtual environment

test_quran-suras_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_quran-suras_env

- Active the virtual environment

source test_quran-suras_env/bin/active


Step 2: OK, now, let flow below content to start the installation quran-suras

To install quran-suras on Windows(CMD):

py -m pip install quran-suras

To install quran-suras on Unix/macOs:

pip install quran-suras


Step 3: If you want to install a specific quran-suras version, add ==<quran-suras version> to the end command line

Example:

pip install quran-suras==1.0.0


Please see the version list below table:

VersionReleased dateCommand
quran-suras 1.1.42021-06-21T12:20:28Windows:

py -m pip install quran-suras==1.1.4

Unix/macOs:

pip install quran-suras==1.1.4

quran-suras 1.1.32021-06-21T12:07:47Windows:

py -m pip install quran-suras==1.1.3

Unix/macOs:

pip install quran-suras==1.1.3

quran-suras 1.1.22021-06-20T22:56:07Windows:

py -m pip install quran-suras==1.1.2

Unix/macOs:

pip install quran-suras==1.1.2

quran-suras 1.1.12021-06-20T22:20:22Windows:

py -m pip install quran-suras==1.1.1

Unix/macOs:

pip install quran-suras==1.1.1

quran-suras 1.1.02021-06-20T22:10:14Windows:

py -m pip install quran-suras==1.1.0

Unix/macOs:

pip install quran-suras==1.1.0

quran-suras 1.0.02021-06-20T09:55:56Windows:

py -m pip install quran-suras==1.0.0

Unix/macOs:

pip install quran-suras==1.0.0


Step 4: Otherwise, you can install quran-suras from local archives:

Download the distribution file from quran_suras-1.1.4-py3-none-any.whl or the specific quran-suras version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_quran-suras_downloaded_file>

On Unix/macOs:

pip install <path_to_quran-suras_downloaded_file>


List distribution:


Project link:

- Homepage