I have an URL template of the form
https://farm{farm-id}.staticflickr.com/{server-id}/{photo-id}_{secret}.jpg
I have retrieved the following fields and there around 1000000 of these records. After retrieving the record below
farm-id: 1
server-id: 2
photo-id: 1418878
secret: 1e92283336
size: m
I need to construct this URL
https://farm1.staticflickr.com/2/1418878_1e92283336_m.jpg
I am thinking of some approaches, should I construct a dictionary for this one?