0 votes
in Python by
How to save an image locally using Python in which we already know the URL address?

1 Answer

0 votes
by

The following code is used to save the image locally from the URL address which we know.

import urllib.request

urllib.request.urlretrieve("URL", "local-filename.jpg")

Related questions

0 votes
asked Jun 28, 2020 in Python by Robindeniel
0 votes
asked Apr 18, 2020 by SakshiSharma
...