Metadata-Version: 1.1
Name: django-backup2csv
Version: 0.4
Summary: A simple Django app to backup and restore your models data.
Home-page: https://gitlab.com/mmandrille/django-backup2csv
Author: Marcos Federico Mandrille
Author-email: mmandrille@gmail.com
License: MIT License
Description: ================================
                Backup2CSV
        ================================
        
        Backup2CSV is a simple Django app that allow you to download and restore
        your models content in a csv file.
        
        Quick start
        -----------
        
        1. Add "backup2csv" to your INSTALLED_APPS setting like this::
        
        	INSTALLED_APPS = [
                	...
                	'backups',
        	]
        
        2. Include the backup2csv URLconf in your project urls.py like this::
        
        	urlpatterns = [
        		...
        		path('backup/', include('backups.urls', namespace='bkups')),
        		...
        	]
        
        3. Start the development server and visit http://127.0.0.1:8000/backup/
           to see the list of all apps and models you have.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
