How to create DataSet from my own images links?

Hi everyone!
I have a list of Json files which contain images description and the links to those images.
I would like to know how can i make a dataset out of this list in order to make a system for image classification?

Thank u very much!
Shahar.

Hi @Shoosha, First you have to get all the url of the images from the json files and place them in a python list. Then using the request library you can download those images into your local directory. After downloading files you can use numpy to make our own image dataset. Please refer to this gist for working code example. Thank You.