Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Django Class-based Views Classy Views TemplateView

Django: What does super do?

At 4:20 in the video Kenneth uses 'super'. Can anyone explain to me what this does? Thanks :)

1 Answer

Super isn't unique to Django.

Check out the docs.

The docs reference a guide to what super is and how to use it which can be found here.

Questions like these are good times to practice finding answers for yourself as well since quality information can often be found from a single google search of the terms 'python super'. This is an important skill to develop for yourself while coding!

Thanks :)