[Answered ]-Django Signals not triggering when only using apps.py

1👍

You are importing your model too early for Django to handle it correctly. Try moving ‘from .models import DataLog’ to inside your ready(self) function.

Leave a comment