File size: 1,032 Bytes
ae3b1a9
 
eaf1bb9
 
 
 
 
 
 
7327694
 
33b2b35
 
 
 
 
 
 
 
 
 
 
7327694
33b2b35
7327694
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import zipfile
with zipfile.ZipFile("https://huggingface.co/spaces/nightfury/SD-InPainting/blob/main/clipseg-master.zip", 'r') as zip_ref:
    zip_ref.extractall("home/user/app/")

import gradio as gr

download_and_extract_zip_file()
clone_github_repository()

#with gr.Blocks() as demo:
#demo.launch()

import time
import git
from git import RemoteProgress

class CloneProgress(RemoteProgress):
    def update(self, op_code, cur_count, max_count=None, message=''):
        if message:
            print(message)

print('Cloning into %s' % git_root)
git.Repo.clone_from('https://github.com/ThereforeGames/txt2mask/repositories/clipseg.git', 'home/user/app/clipseg', 
        branch='master', progress=CloneProgress())

#-------------
import sys
import os

path  = "home/user/app/clipseg"
clone = "git clone https://github.com/ThereforeGames/txt2mask.git" 

os.system("sshpass -p your_password ssh user_name@your_localhost")
os.chdir(path) # Specifying the path where the cloned project needs to be copied
os.system(clone) # Cloning