Using python, how can i download the original png thumbnail assigned as the Software thumbnail in shotgun? My current code doesn’t provide the original icon which contains transparency.
url = data.get('image', None)
if url:
(_, thumbnail_file) = tempfile.mkstemp(suffix='.png')
urllib.request.urlretrieve(url, thumbnail_file)