Spaces:
Sleeping
Sleeping
File size: 268 Bytes
1a1a2a1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import subprocess
import sys
import os
def main():
app_path = os.path.join(os.path.dirname(__file__), "Code+Folder", "src", "resume_suggestions.py")
subprocess.run([sys.executable, "-m", "streamlit", "run", app_path])
if __name__ == "__main__":
main()
|