Metadata-Version: 1.0
Name: django-export
Version: 0.0.2
Summary: Django app allowing for filtered exporting of model data.
Home-page: http://github.com/praekelt/django-export
Author: Praekelt Foundation
Author-email: dev@praekelt.com
License: UNKNOWN
Description: Django Export
        =============
        **Django app allowing for filtered exporting of model object data.**
        
        django-export allows you to export model objects in a wide range of serialized formats (JSON, CSV, XML, YAML). Exports can be filtered and ordered on any of the particular model's fields.
        
        django-export utilizes `django-object-tools <http://pypi.python.org/pypi/django-object-tools>`_ to hook into Django's admin interface and take care of user permissions.
        
        .. contents:: Contents
            :depth: 5
        
        
        Installation
        ------------
        
        #. Install ``django-object-tools`` as described `here <http://pypi.python.org/pypi/django-object-tools#id3>`_.
        
        #. Install or add ``django-export`` to your Python path.
        
        #. Add ``export`` to your ``INSTALLED_APPS`` setting.
        
        Usage
        -----
        
        Once installed you should see an **Export** object tool enabled on all admin change list views.
        
        .. image:: https://github.com/downloads/praekelt/django-export/export_example.png
        
        If you don't see the tool make sure the logged in user has the appropriate export user permission assigned (or set user as superuser).
        
        Clicking the **Export** tool link takes you to an export page on which you can specify format, ordering and filtering of the objects you want to export. The export is delivered as a download in whichever format you select.
        
        Authors
        =======
        
        Praekelt Foundation
        -------------------
        
        * Shaun Sephton
        
        Changelog
        =========
        
        0.0.2 (2011-08-19)
        ------------------
        #. Supports all Field types.
        
        0.0.1 (2011-08-11)
        ------------------
        
        #. Initial release.
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
