Spaces:
Runtime error
Runtime error
File size: 248 Bytes
0e5715c |
1 2 3 4 5 6 7 8 9 10 11 12 |
from git import Repo
import os
GITHUB_REPO_URL = os.environ.get("GITHUB_REPO_URL")
if not os.path.exists('repo_directory'):
Repo.clone_from(GITHUB_REPO_URL, 'repo_directory')
from repo_directory.AudioSentimentAnalysis.app import *
main() |