No, while that might work, I want to do it properly!
The sku value is passed into the script so I would have to urlEncode that before merging it with the rest of the URL.
I strongly recommend not using urllib. Instead use Java's standard URLEncoder class. Consider using the method that takes a Charset object. See the list from StandardCharsets.
{ I recommend not using any jython libraries when java or the jars included in Ignition have an alternative. Better performance, fewer bugs, and no issues with python2's lack of encoding awareness. That is my definition of "properly". }