David_A commited on
Commit
481bbc6
·
1 Parent(s): a7029db

ajout fichier app

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. app.py +7 -0
README.md CHANGED
@@ -5,7 +5,7 @@ colorFrom: green
5
  colorTo: indigo
6
  sdk: streamlit
7
  sdk_version: 1.21.0
8
- app_file: Accueil.py
9
  pinned: false
10
  license: mit
11
  ---
 
5
  colorTo: indigo
6
  sdk: streamlit
7
  sdk_version: 1.21.0
8
+ app_file: app.py
9
  pinned: false
10
  license: mit
11
  ---
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import subprocess
2
+
3
+ # Define the command to execute the other script
4
+ command = ['python', 'Accueil.py']
5
+
6
+ # Execute the command
7
+ subprocess.run(command)