Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alir3z4/django-databrowse
Databrowse is a Django application that lets you browse your data.
https://github.com/alir3z4/django-databrowse
data database django
Last synced: about 6 hours ago
JSON representation
Databrowse is a Django application that lets you browse your data.
- Host: GitHub
- URL: https://github.com/alir3z4/django-databrowse
- Owner: Alir3z4
- License: bsd-3-clause
- Created: 2013-01-08T20:37:48.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2024-03-06T21:45:11.000Z (8 months ago)
- Last Synced: 2024-11-08T01:08:10.416Z (7 days ago)
- Topics: data, database, django
- Language: Python
- Homepage: http://pypi.python.org/pypi/django-databrowse
- Size: 93.8 KB
- Stars: 42
- Watchers: 9
- Forks: 20
- Open Issues: 3
-
Metadata Files:
- Readme: README.rst
- Changelog: ChangeLog.rst
- License: LICENSE
Awesome Lists containing this project
README
=================
Django Databrowse
=================.. image:: https://travis-ci.org/Alir3z4/django-databrowse.png
:alt: travis-cli tests status for django-databrowse
:target: https://travis-ci.org/Alir3z4/django-databrowse.. contents:: Table of contents
.. note::
Extracted from `Django 1.4 since databrowse deprecation `_
------
Databrowse is a Django application that lets you browse your data.
As the Django admin dynamically creates an admin interface by introspecting
your models, Databrowse dynamically creates a rich, browsable Web site by
introspecting your models.Installation
------------
``django-databrowse`` is available on pypihttp://pypi.python.org/pypi/django-databrowse
So easily install it by ``pip``
::
$ pip install django-databrowseOr by ``easy_install``
::
$ easy_install django-databrowseAnother way is by cloning ``django-databrowse``'s `git repo `_ ::
$ git clone git://github.com/Alir3z4/django-databrowse.gitThen install it by running:
::
$ python setup.py installHow to use Databrowse
---------------------1. Point Django at the default Databrowse templates. There are two ways to
do this:* Add ``'django_databrowse'`` to your `INSTALLED_APPS`
setting. This will work if your `TEMPLATE_LOADERS` setting
includes the ``app_directories`` template loader (which is the case by
default). See the `template loader docs `_ for more.* Otherwise, determine the full filesystem path to the
`django_databrowse/templates` directory, and add that
directory to your `TEMPLATE_DIRS `_ setting.2. Register a number of models with the Databrowse site::
import django_databrowse
from myapp.models import SomeModel, SomeOtherModel, YetAnotherModeldjango_databrowse.site.register(SomeModel)
django_databrowse.site.register(SomeOtherModel, YetAnotherModel)Note that you should register the model *classes*, not instances.
it is possible to register several models in the same
call to `django_databrowse.site.register`.It doesn't matter where you put this, as long as it gets executed at some
point. A good place for it is in your `URLconf file `_ (``urls.py``).3. Change your URLconf to import the `~django_databrowse` module::
from django_databrowse
...and add the following line to your URLconf::
(r'^django_databrowse/(.*)', django_databrowse.site.root),
The prefix doesn't matter -- you can use ``databrowse/`` or ``db/`` or
whatever you'd like.4. Run the Django server and visit ``/databrowse/`` in your browser.
Requiring user login
---------------------You can restrict access to logged-in users with only a few extra lines of
code. Simply add the following import to your URLconf::from django.contrib.auth.decorators import login_required
Then modify the `URLconf `_ so that the
`django_databrowse.site.root` view is decorated with
`django.contrib.auth.decorators.login_required`::(r'^databrowse/(.*)', login_required(django_databrowse.site.root)),
If you haven't already added support for user logins to your `URLconf
`_, as described in the `user authentication docs
`_, then you will need to do so now with the following
mapping::(r'^accounts/login/$', 'django.contrib.auth.views.login'),
The final step is to create the login form required by
`django.contrib.auth.views.login`. The
`user authentication docs `_ provide full details and a
sample template that can be used for this purpose.Tests
-------------``django-databrowse`` has been tested Django 1.6 and later. To run the the tests:
::
$ python run_tests.pyIt's also available on travis-ci:
https://travis-ci.org/Alir3z4/django-databrowse/
Translations
------------Currently ``English`` is only available language that is being packaged. If you would like to contribute
in localization you can find ``django-databrowse`` project on Transifex as well:
https://www.transifex.com/projects/p/django-databrowse/**Translation Status on Transifex**
.. image:: https://www.transifex.com/projects/p/django-databrowse/resource/django_databrowse/chart/image_png
:alt: django-databrowse translation status on transifex
:target: https://www.transifex.com/projects/p/django-databrowse/
Releasing
----------* To make a release, first update the changelog with all the changes in the new release.
* Tag the git repository with the release version.
* Upload to PyPI.
* Update https://github.com/Alir3z4/django-databrowse/releases.