# GANtools Python-based cli tools for generating images using bigGAN. ## Instructions 1. Install Python 3 (note for macOS users: if you are going to use brew to install python make sure you replace `python` with `python3` and `pip` with `pip3` in all of the following steps). 2. Install gantools ``` pip install git+https://gitlab.com/Vee9ahd1/gantools ``` 3. Read the help dialog ``` gantools -h ``` ## Example usage ``` gantools --username username@email.com --password mypassword123 --nframes 20 --keys 7968340a72eabab735d04dba 0416461072e5e22fd6d1637c c37d216dfd865aa7397db242 ``` where the hexidecimal strings after `--keys` are the IDs found in an image's ganbreeder URL (e.g. https://ganbreeder.app/i?k=c37d216dfd865aa7397db242 has key: c37d216dfd865aa7397db242). You can list arbitrarily many keys; just be sure to increase your `--nframes` value to compensate (and be prepared for a longer render time). ## Troubleshooting ``` "urllib.error.URLError: " ``` type this: ``` pip install --upgrade certifi ``` or on macOS with brew: ``` pip3 install --upgrade certifi ```