Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Django Pandas | 724 | 83 | 4 | a year ago | 21 | October 29, 2021 | 20 | bsd-3-clause | Python | |
Tools for working with pandas in your Django projects | ||||||||||
Django Test Migrations | 419 | 3 | 13 hours ago | 6 | December 13, 2021 | 13 | mit | Python | ||
Test django schema and data migrations, including migrations' order and best practices. | ||||||||||
Drf Autodocs | 82 | 4 | 4 years ago | 11 | March 29, 2018 | 20 | bsd-2-clause | HTML | ||
Ultimately automated DRF documentation rendering(UNMAINTAINED) | ||||||||||
Menagerie | 40 | 10 years ago | 2 | December 06, 2012 | 3 | apache-2.0 | Python | |||
ZooKeeper-backed Django settings interface. | ||||||||||
Django Hashedfilenamestorage | 37 | 3 | 8 days ago | 9 | January 14, 2019 | 5 | bsd-3-clause | Python | ||
A Django storage backend that names files by hash value. | ||||||||||
Django Template Names | 30 | 4 | 6 years ago | 3 | May 07, 2017 | Python | ||||
Django Templates Names by @phpdude | ||||||||||
Xsd_to_django_model | 19 | a year ago | 3 | gpl-3.0 | Python | |||||
Generate Django models from an XSD schema description (and a bunch of hints) | ||||||||||
Django App Name Translation In Admin | 18 | 11 years ago | Python | |||||||
Application names i18n in the admin app | ||||||||||
Django Unique Upload | 12 | 7 years ago | 2 | mit | Python | |||||
A django utility that creates unique file names for uploaded files via uuids. | ||||||||||
Django Extra Sensitive Variables | 9 | 8 years ago | 3 | February 25, 2015 | mit | Python | ||||
Globally censor a set of default variable names in your Django error reports |
The main point in development of pybb is to build it so it could be easily integrated to existing django based site. This mean:
pybb does not provide features like user registration, password restoring. It does not provide authentication page. You should use your favorite application for such things. You can try well known django-registration http://code.google.com/p/django-registration/ or my own implementation http://hg.pydev.ru/django-account. Both applications contain install instruction in the distributive. The demo site http://pybb.org use django-account.
all pybb stuff placed in one application which is called pybb
I'm trying to stay with KISS principle. At least in the beginning of pybb development. I mean that there are no threaded posts and there is only bbcode markup support and there is no multi-level nested categories.
Firstly you have to install pybb. You have two ways:
Put pybb
into settings.INSTALLED_APPS
Run python manage.py pybb_install
or do following steps manually:
Put include('pybb.urls'))
into main project urls.py file
Do python manage.py syncdb
And do not forget to install some authentication application like django-registration or django-account. See info in the bottom of README
PYBB support only english and russian translations now. You should enable django.middleware.locale.LocaleMiddleware to activate django locale autodetecting.