DEV Community

Cover image for Flickr API Size enum
Adam K Dean
Adam K Dean

Posted on

1

Flickr API Size enum

Just for future reference, here is the Flickr API sizes as a JavaScript enum.

var flickr_sizes = {
    'square':       '_s',
    'large_square': '_q',
    'thumbnail':    '_t',
    'small':        '_m',
    'small_320':    '_n',
    'medium':       '',
    'medium_640':   '_z',
    'medium_800':   '_c',
    'large':        '_b',
    'large_1600':   '_h',
    'large_2048':   '_k',
    'original':     '_o'
};
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Image of DataStax

AI Agents Made Easy with Langflow

Connect models, vector stores, memory and other AI building blocks with the click of a button to build and deploy AI-powered agents.

Get started for free

👋 Kindness is contagious

If you found this post useful, consider leaving a ❤️ or a nice comment!

Got it