jluebbert
jluebbert

Reputation: 260

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 include it in my django app?

Thank you!

Upvotes: 5

Views: 8949

Answers (1)

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 799082

Put it in a module somewhere and import it.

Upvotes: 8

Related Questions