I tried to use webbrowser.open() function to open a long url in python, but it seems it cannot open a long url correctly. The string passed to this function is truncated to about 2083 bytes long and only the front part is opened. The code is sth like this
import webbrowser
url = 'www.google.com/parametersssssssssss....' #very very long
webrowser.open(url) #only front part is opened
No exception is tracked. Anyone has similar situation about it?