'Error while using open function in python [duplicate]

Below is my code

with open(r"https:/github.com/PhonePe/pulse/blob/master/data/aggregated/transaction/country/india/2018/1.json", "r") as j:

data=j.read()

print(data)

I am trying to fetch transaction details from phonepe , but I am getting the following error

enter image description here



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source