Spaces:
Sleeping
Sleeping
File size: 201 Bytes
01704b9 | 1 2 3 4 5 6 7 8 9 10 | import sys
import os
# Set up paths for PythonAnywhere
path = '/home/YOUR_USERNAME/YOUR_PROJECT_FOLDER'
if path not in sys.path:
sys.path.append(path)
from app import app as application
|