vote up 2 vote down star

The Django apps come with their own features and design. If your requirements don't match 100% with the features of the contib app, you end up customizing and tweaking the app. I feel this involves more effort than just building your own app to fit your requirements.

What do you think?

flag

3 Answers

vote up 6 vote down check

It all depends. We had a need for something that was 98% similar to contrib.flatpages. We could have monkeypatched it, but we decided that the code was so straightforward that we would just copy and fork it. It worked out fine.

Doing this with contrib.auth, on the other hand, might be a bad move given its interaction with contrib.admin & contrib.session.

link|flag
1  
Actually, contrib.session doesn't use contrib.auth, it's the other way around so you could still use that. Also, it's not terribly difficult to develop your own user model for auth purposes that has a foreign key back to contrib.auth User if you want certain users to have access to admin tool. – Joe Holloway Feb 12 at 19:12
You are correct. I had a vague memory of a session-related problem, but it was auth storing authentication module info in the session, and then we moved the file the code was in and it broke. So, never mind on the session comment. – Peter Rowell Feb 12 at 23:10
vote up 5 vote down

I'd also check out third-party re-usable apps before building my own. Many are listed on Django Plug(g)ables, and most are hosted on Google Code, GitHub or BitBucket.

link|flag
vote up 3 vote down

Most of the apps in django.contrib are written very well and are highly extensible.

Don't like quite how comments works? Subclass the models and forms within it, adding your own functionality and you have a working comment system that fits your sites schema, with little effort.

I think the best part when you extend the contrib apps is you're not really doing anything hacky, you're just writing (mostly) regular Python code to add the functionality.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.