Git Product home page Git Product logo

Comments (2)

steventlamb avatar steventlamb commented on August 28, 2024

Thanks for your interest, I hope the project continues to be useful for you.

This library only really supports exports where the schema of the CSV closely aligns to a django model. When we have more elaborate CSV needs, we just roll them ourselves.

Many-to-many relationships are hard to express in a CSV. Not only would you have to choose a particular field or string serialization technique for the related model, you also have to stuff it into a collection or reduce to a single value.

For example:

class Person(models.model):
    name = models.CharField()
    places = models.ManyToManyField('Place')

class Place(models.model):
    description = models.CharField()
    location = models.PointField()

could lead to a csv like:

name,places\n
rust,"[(0,0),(1,1),(2,2)]"\n
marty,"[(0,1),(1,0),(3,3)]"\n

Where you'd have chosen the location field on Place, as well as an array as the way to collapse the multiple values.

There's no plan to support this, but I'll leave this issue open for a time to keep the discussion open for things I've failed to consider.

from django-queryset-csv.

nabinkhadka avatar nabinkhadka commented on August 28, 2024

Any way of specifying number of items only? Like in above example one could choose "Kathmandu" and "Pokhara" (cities from Nepal), and then the result could be "2"? That might be easier? If so, how?

from django-queryset-csv.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.