How can I include custom modules in a Django app
I'm really new to Python and Django. I created a class in Python that I would like to use in a Django application. It doesn't seem like it belongs in it's own application, how can I incl开发者_StackOverflowude it in my django app?
Thank you!
Put it in a module somewhere and import it.
精彩评论