import sys
import os

# Add the application's directory to the Python path
sys.path.insert(0, '/home/magsbae/projects/stocks/v1_0')

# Activate the virtual environment
activate_this = '/home/magsbae/virtualenv/projects/stocks/v1_0/3.9/bin/activate_this.py'
with open(activate_this) as f:
    exec(f.read(), {'__file__': activate_this})

# Import the Flask app object from oa_s_v1_0
from oa_s_v1_0 import app as application
