https://github.com/fredi-python/clipdropsdxl
Selenium Wrapper for ClipDrop: Unlocking High-Resolution Text-to-Image Creation with StableDiffusionXL (SDXL)
https://github.com/fredi-python/clipdropsdxl
Last synced: 2 months ago
JSON representation
Selenium Wrapper for ClipDrop: Unlocking High-Resolution Text-to-Image Creation with StableDiffusionXL (SDXL)
- Host: GitHub
- URL: https://github.com/fredi-python/clipdropsdxl
- Owner: fredi-python
- Created: 2023-07-03T20:44:03.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-12T01:35:42.000Z (over 2 years ago)
- Last Synced: 2025-04-03T08:42:47.480Z (8 months ago)
- Language: Python
- Homepage:
- Size: 22.5 KB
- Stars: 22
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ClipDropSDXL 
Selenium Wrapper for ClipDrop: Unlocking High-Resolution Text-to-Image Creation with StableDiffusionXL (SDXL)
## Installation
```
python3 -m pip install --upgrade git+https://github.com/fredi-python/ClipDropSDXL.git
```
## Usage
```
$ python3 -m ClipDropSDXL --help
usage: ClipDropSDXL.py [-h] [--headless] [--style STYLE] --prompt PROMPT [--output-dir OUTPUT_DIR] [--browser BROWSER]
options:
-h, --help show this help message and exit
--headless Run Browser in headless mode
--style STYLE Style option, default: no style
--prompt PROMPT Prompt to send to Clipdrop
--output-dir OUTPUT_DIR
Output Directory
--browser BROWSER Browser to use (default: chrome)
```
### Working with styles
**Available styles:**
`anime`, `photographic`, `digital-art`, `comic-book`, `fantasy-art`, `analog-film`, `neonpunk`, `isometric`, `lowpoly`, `origami`, `line-art`, `cinematic`, `3d-model`, `pixel-art`
## Usage Examples
**PHOTOGRAPHIC**
```
python3 -m ClipDropSDXL --prompt 'Car' --style photographic
```

```
python3 -m ClipDropSDXL --prompt 'landscape of a Japanese garden in autumn' --style photographic
```

**NEONPUNK**
```
python3 -m ClipDropSDXL --prompt 'Man in hoodie walking away from camera' --style neonpunk
```

```
python3 -m ClipDropSDXL --prompt 'stunning sunset over a calm beach with palm trees.' --style neonpunk
```
