python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
django-exiffield: can't upload picture due to different format of 'CreateDate' and 'DateTimeField'
I'm a Django newbie, I hope you could help me.
I'm developing a photo gallery app, and right now I'm trying to implement EXIF data extraction. It's working pretty well with pictures that were uploaded...
Cristina D.
Votes: 0
Answers: 1
Is there an efficient way to add a csv file with many columns to a Django model?
I have a data frame with over 150 columns that I want to add to my Django database. Everything I have seen online gives an example only using a couple columns and requires that you list each field tha...
Cole
Votes: 0
Answers: 2
Get a queryset of objects where a field is distinct
I have a model like the following:
class Reports(models.Model):
reportid = models.AutoField(primary_key=True, unique=True)
name = models.CharField(max_length=100)
description = models.Char...
Joel G Mathew
Votes: 0
Answers: 2
Get Django to return related objects
I'm trying to filter one table and obtain the related rows from another table as a nested object.
Models are as follow:
class KpiArea(models.Model):
harvest = models.CharField(max_length=45)
a...
dizzydizzy
Votes: 0
Answers: 1