Hi PythonAnywhere team,
I can confirm the same issue — this looks like a filesystem/storage problem affecting multiple accounts, and it started today.
Account: easyprint1
Web app node: blue-liveweb35
Started: ~17:00 UTC today (July 30). The app had been running fine for months with no code changes or deployments.
Symptoms:
Web app returns 504-backend. The server log shows the WSGI app took 310 seconds to start:
WSGI app 0 (mountpoint='') ready in 310 seconds
Access log shows requests hitting the 300s frontend timeout (response-time=300.000 → 504), plus 502s during worker respawn and 499s from clients giving up.
The slowness reproduces in a Bash console, completely outside the web stack — it's I/O wait, not CPU:
$ time python manage.py check (interrupted with Ctrl+C)
real 3m19.978s
user 0m1.374s
sys 0m0.412s
The traceback at interruption shows it was stuck inside importlib._bootstrap_external get_data — i.e. simply reading an ordinary .py file from disk (a module inside openpyxl).
$ time ls -R ~/EasyPrint > /dev/null
real 0m27.515s
user 0m0.004s
sys 0m0.061s
27 seconds of wall time with ~4ms of CPU just to list a directory tree.
$ time python -c "print('hola')"
real 0m3.458s
Even a bare Python startup takes 3.5s.
No external APIs, no remote databases — the process is just waiting on file reads. This matches what gcmovil reported above (console slow to run commands or open files). It looks like a degraded file server on your side.
Happy to provide any additional info. Thanks!