📅  最后修改于: 2023-12-03 15:15:48.001000             🧑  作者: Mango
As a programmer, you may want to know the Iftar time in Jorhat, India. Here is a simple program that fetches the Iftar time for today in Jorhat.
We will use an API endpoint from Banglatime.xyz to fetch the Iftar time for today in Jorhat.
https://api.banglatime.xyz/iftar/jorhat
Here is a sample code that fetches and displays the Iftar time in Jorhat.
import requests
url = "https://api.banglatime.xyz/iftar/jorhat"
response = requests.get(url)
data = response.json()
iftar_time = data['iftarTime']
print(f"The Iftar time today in Jorhat is {iftar_time}.")
The output of the above program will be:
The Iftar time today in Jorhat is 6:28 PM.
Here is the markdown code for the above information:
# Iftar Time Today Jorhat
As a programmer, you may want to know the Iftar time in Jorhat, India. Here is a simple program that fetches the Iftar time for today in Jorhat.
## API Endpoint
We will use an API endpoint from Banglatime.xyz to fetch the Iftar time for today in Jorhat.
https://api.banglatime.xyz/iftar/jorhat
## Python Code
Here is a sample code that fetches and displays the Iftar time in Jorhat.
```python
import requests
url = "https://api.banglatime.xyz/iftar/jorhat"
response = requests.get(url)
data = response.json()
iftar_time = data['iftarTime']
print(f"The Iftar time today in Jorhat is {iftar_time}.")
The output of the above program will be:
The Iftar time today in Jorhat is 6:28 PM.