Hello all. I am wondering if anyone has bumped into this one. The requests module was installed in the site-packages folder iin the virtual environment. Since we run the flask app on apache and the virtual environment is inactive, by design, as we are using mod_wsgi, the requests module is not being imported by Apache.This is how I am trying to import the module:
Enter code here...from flask import Flask, render_template, request import requests -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/modwsgi. For more options, visit https://groups.google.com/d/optout.
