According to the Python 3 libraries documentation I should be able to use a 'urllib.request' object to call an API and get back data. But I am getting an error: module 'urllib' has no attribute 'request'.
The request part of the urllib library is missing. How should I call an API then?
Prior to the 2023 version I was able to use urllib2. My plugin works fine on MAC and PC at earlier versions of the Python implementation.