#!/usr/bin/env python31# -*- coding: utf-8 -*-23# Copyright 2017-2023 Mike Fährmann4#5# This program is free software; you can redistribute it and/or modify6# it under the terms of the GNU General Public License version 2 as7# published by the Free Software Foundation.89import sys1011if not __package__ and not hasattr(sys, "frozen"):12import os.path13path = os.path.realpath(os.path.abspath(__file__))14sys.path.insert(0, os.path.dirname(os.path.dirname(path)))1516import gallery_dl1718if __name__ == "__main__":19raise SystemExit(gallery_dl.main())202122