Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import subprocess
|
| 2 |
+
# Download shell script version
|
| 3 |
+
#subprocess.run("curl -s -L -o run.py 'https://gitlab.com/chamod12/GCRD-Linux-Colab/-/raw/main/run.py'", shell=True)
|
| 4 |
+
#!curl -s -L -o run.py 'https://gitlab.com/chamod12/GCRD-Linux-Colab/-/raw/main/run.py'
|
| 5 |
+
#!python run.py
|
| 6 |
+
# Make it executable
|
| 7 |
+
subprocess.run('python run.py', shell=True)
|
| 8 |
+
# Run it
|
| 9 |
+
#subprocess.run('./main.sh', shell=True)
|