Spaces:
Running
Running
Commit
·
f731239
1
Parent(s):
028bb9a
Update app.py
Browse files
app.py
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
-
|
2 |
|
3 |
-
|
4 |
|
5 |
|
6 |
|
7 |
-
import pygit2
|
8 |
-
import os
|
9 |
|
10 |
-
current_working_directory = os.getcwd()
|
11 |
|
12 |
#path = os.path.join(current_working_directory , 'streamlit')
|
13 |
#os.mkdir(path)
|
14 |
|
15 |
-
pygit2.clone_repository(GITHUB, f"{current_working_directory}/files")
|
|
|
1 |
+
from git import Repo
|
2 |
|
3 |
+
repo = Repo.clone_from('https://tracinginsights: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@github.com/TracingInsights/Charts.git', 'streamlit', )
|
4 |
|
5 |
|
6 |
|
7 |
+
#import pygit2
|
8 |
+
#import os
|
9 |
|
10 |
+
#current_working_directory = os.getcwd()
|
11 |
|
12 |
#path = os.path.join(current_working_directory , 'streamlit')
|
13 |
#os.mkdir(path)
|
14 |
|
15 |
+
#pygit2.clone_repository(GITHUB, f"{current_working_directory}/files")
|