Is here a way to write a Django command to generate code automatically?
In my case: every time I create a new model I must create the following stuff too:
- Create Administration classes in
admin.py
- Create service functions related to this model.
- Create a factory using FactoryBoy.
- Create test classes.
It would be nice if there was a command that generates this stuff automatically. Not everything, of course, but just the basic, the definition.
Is there something like this today in Django? Or is there a way I can write Django commands to generate code?
I have not personally used it yet but you could try to use the third-party package Django baker Django Baker that offers that functionality