I am using Python to share an image. Then, I want to be able to only print to the console the short url. How do I accomplish this?
With this:
print(client.share(path))
I get:
{'visibility': 'PUBLIC', 'expires': 'Tue, 01 Jan 2030 00:00:00 +0000', 'url': 'https://....'}
What I want:
https://....
Any help is greatly appreciated!