Hopefully this is a simple noob question. I'm working on my first large(ish) Django project. The first engineer on the project was following the default Django code layout. As things have grown we've recently split out models into their own directory with one file per model.
It's time to start doing the same for views. However, I don't want/need to do it all in one go. I'd like to just start moving things out of the default views.py
one by one as I work on them. However, I'm having difficulty getting urls.py
to work with both a views directory and views.py
Is this just going to cause a naming collision when I try to import 'views' in my urls.py
file? Is the simple answer just to call "views" something else while I make the transition? Or just bite the bullet and do it all at once?