Aug-08-2018, 03:02 AM
This works
Any ideas on what might be going on? I'm totally new to python.
from urllib.request import urlopen data = urlopen("https://cinnamon-spices.linuxmint.com/json/applets.json").read(60000) print(data)This hangsfrom urllib.request import urlopen data = urlopen("https://cinnamon-spices.linuxmint.com/json/applets.json").read(70000) print(data)or without a specific number of bytes, it hangs toofrom urllib.request import urlopen data = urlopen("https://cinnamon-spices.linuxmint.com/json/applets.json").read() print(data)It only happens for this specific site (that I know of).Any ideas on what might be going on? I'm totally new to python.
