1👍
I can’t debate on the matter of the best structure due to the lack of experience, but I would probably try to avoid using name such as Client
and Request
– too close to build-in names
Imagine you will start unit-testing and have to do the following
from django.test import Client
which, in my understanding, using your Client
and django’s Client
will decrease readability.
Please correct me if i’m wrong.
Source:stackexchange.com