I have a Flask-python web app that uploads a file, reads it into a pandas dataframe, performs a bunch of calculations on the data in the dataframe, then outputs an html table. On my computer, the pure python part of the code (the calculations on the dataframe data) took 0.15 seconds, but the same portion of the code on PythonAnywhere took 39.2 seconds (!). (Lapsed time was recorded using tic-toc print statements using time.clock.) That's almost 250x slower. What could be causing this and how can I fix it?