Wednesday, March 26, 2014

Re: the best ways export datas for my project

On 27/03/2014 5:01am, carlos wrote:
> Hi all,
>
> What is de best ways for export data?
>
> for example i have 3 apps, but apps 1 and 2 have relation with apps 1
> and i want download data in only one file all data
>
> APP1
> class Model1(...):
> field1 = ....
> field2 = ...
>
> ----------------------------------
>
> APP2
> class Model2():
> fk = (Model1)
> field3 = ...
> field4 = ....
>
> -------------------------------------
> APP3
> class Model3():
> fk = (Model1)
> field5 = ...
> field6 = ....
>
> and now I would like to download my data so ( exclude all id )
>
> field1 | field2 | field3 | field4 | field5 | field6
>
> I do not care if excel or csv! for download
>
> know any app that does this?

https://github.com/magopian/django-data-exports

https://docs.djangoproject.com/en/dev/ref/django-admin/#dumpdata-app-label-app-label-app-label-model

https://github.com/bmihelac/django-import-export

... not necessarily in that order


>
> any idea?
>
> Cheers
>
> --
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-users+unsubscribe@googlegroups.com
> <mailto:django-users+unsubscribe@googlegroups.com>.
> To post to this group, send email to django-users@googlegroups.com
> <mailto:django-users@googlegroups.com>.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAM-7rO3kYckxS71ZZ7n%2BW1fwKmsiZKoiW_j3S2pQzmt6tedC4w%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAM-7rO3kYckxS71ZZ7n%2BW1fwKmsiZKoiW_j3S2pQzmt6tedC4w%40mail.gmail.com?utm_medium=email&utm_source=footer>.
> For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/53335893.3050509%40dewhirst.com.au.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment