views:

72

answers:

1

Hello, 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!

+2  A: 

Put it in a module somewhere and import it.

Ignacio Vazquez-Abrams