Create Extensions.py
Browse files- Extensions.py +20 -0
Extensions.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import subprocess
|
| 2 |
+
|
| 3 |
+
urls = [
|
| 4 |
+
'https://github.com/YKefasu/sd-artists-ui-tweak',
|
| 5 |
+
'https://github.com/Bing-su/adetailer',
|
| 6 |
+
'https://github.com/Ysb321/sd-infinite-image-browsing',
|
| 7 |
+
'https://github.com/thomasasfk/sd-webui-aspect-ratio-helper',
|
| 8 |
+
'https://github.com/DominikDoom/a1111-sd-webui-tagcomplete',
|
| 9 |
+
'https://github.com/Iyashinouta/sd-model-downloader',
|
| 10 |
+
'https://github.com/Ysb321/sd-roooop',
|
| 11 |
+
'https://github.com/richrobber2/canvas-zoom',
|
| 12 |
+
'https://github.com/fkunn1326/openpose-editor',
|
| 13 |
+
'https://github.com/kohya-ss/sd-webui-additional-networks',
|
| 14 |
+
'https://github.com/thomasasfk/sd-webui-aspect-ratio-helper',
|
| 15 |
+
'https://github.com/Mikubill/sd-webui-controlnet',
|
| 16 |
+
'https://github.com/Ysb321/tunnels'
|
| 17 |
+
]
|
| 18 |
+
|
| 19 |
+
for url in urls:
|
| 20 |
+
subprocess.run(['git', 'clone', url])
|