A class called MetaOptions that enables decoration of Django models with meta classes in similar style to Admin and Meta.
Included is an example usage to enable CSV export of any set of models.
The package installs into django.contrib.options and is available for download at the Python Cheeseshop
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ### Example:
###
### from django.db import models
### from django.contrib.options import MetaOptions
###
### class ExampleNamedObject(models.Model):
### class CSV(MetaOptions):
### separator = ';'
### format = (
### ('name', 'Name'),
### ('describe', 'Description'),
### )
### name = models.CharField(maxlength=32)
### def describe(self):
### return str(self)
###
### from django.contrib.options.csv import csv
### for row in csv(ExampleNamedObject):
### print row
|
More like this
- Add Toggle Switch Widget to Django Forms by OgliariNatan 2 weeks, 3 days ago
- get_object_or_none by azwdevops 4 months, 1 week ago
- Mask sensitive data from logger by agusmakmun 6 months ago
- Template tag - list punctuation for a list of items by shapiromatron 1 year, 8 months ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 1 year, 8 months ago
Comments
Please never install anything into the django tree like that. It means most of us can never use it.
Is there any reason why this is not just a third party app like everyone else writes?
#
Please login first before commenting.