class Worker(object):
def post_single(self, caption, image):
raise NotImplementedError('post_single has to be implemented')
def post_multiple(self, message, images):
raise NotImplementedError('post_multiple has to be implemented')