Forums

PythonAnywhere for MS (Scikit-learn) apps

Hello,

I need to host a Flask app that can run a client's machine learning code, for example, the python scikit-learn libraries, but other libraries like NumPy, Pandas, and the like. Are these libraries supported?

Also wondering how I secure the web app so only "registered" users (those with, say, a password) can use it.

Thanks!

Yes, those libraries are supported.

You can use a module like flask-login to handle login and authentication.

Thank you!