How to use the gallerize.Gallery.from_args function in gallerize

To help you get started, we’ve selected a few gallerize examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github homeworkprod / gallerize / gallerize.py View on Github external
d = defaultdict(list)
    for path in paths:
        key = os.path.basename(path).lower()
        d[key].append(path)

    return filter(lambda x: len(x[1]) > 1, d.items())


# -------------------------------------------------------------------- #


if __name__ == '__main__':
    try:
        args = parse_args()
        handle_duplicate_filenames(args.full_image_filenames)
        Gallery.from_args(args).generate()
    except KeyboardInterrupt:
        sys.exit('Ctrl-C pressed, aborting.')

gallerize

Create a static HTML/CSS image gallery from a bunch of images.

GPL-3.0
Latest version published 3 years ago

Package Health Score

51 / 100
Full package analysis