Skip to main content

List of Dictionaries Model Field for Django

Project description

Django-LODField
------------------

A Django model representation for a list of python objects.

##### 1) Installation
```
pip install django-lodfield
```
or
```
git clone https://github.com/nakule/django-lodfield.git django-lodfield
cd django-lodfield
python setup.py install
```

##### 2) Import the List of Dictionary (LOD) model field
```
from LODField import LODField
```

##### 3) Define the model Field
```
class Invoice(models.Model):
paid = models.BooleanField(default=False)

# Simple Usage
invoice_lines = LODField(max_length=10000)

# Set Limit for Admin Form
invoice_lines = LODField(max_length=10000, lines=10)

# Set Fields for the Dictionaries in the List
invoice_lines = LODField(max_length=10000, lines=10,
keys=["Description", "Amount in Cents",
"Amount in Dollars"])
```

##### 4) Register Model to the Django Admin Interface (Optional)
```
from django.contrib import admin
admin.site.register(Invoice)
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-lodfield-1.0.3.tar.gz (4.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page