Rannick
Rannick

Reputation: 596

Popular Django App Libraries

I know there is some really good django app libraries out there (other than the builtin django.contrib.*) but for some reason, my google search abilities are failing me.

I am thinking of one in particular that I cannot remeber the name of for the life of me. I keep wanting to call it pyrex or pixar or something. Obviously, neither of those are correct. Any other libraries out there are also appreciated. I don't really feel like writing a password reset page if I don't have to.

Upvotes: 2

Views: 842

Answers (3)

Van Gale
Van Gale

Reputation: 43922

Almost all django apps are registered at the python package index. If you browse the topic hierarchy you'll see that Django is one of the "framework" topics, so that makes it possible to show all packages which use Django.

As for the app you are searching for, my guess is you are thinking of Pinax

Upvotes: 1

Craig Trader
Craig Trader

Reputation: 15679

I've found the Python Package Index to be a great place to start searching for Django apps and libraries.

Maybe you were looking for django-piston?

Upvotes: 1

Related Questions