Re: Use an external REST API in django admin

2018-07-18 Thread Melvyn Sopacua
On maandag 16 juli 2018 20:36:00 CEST Vijay Khemlani wrote: > django rest framework would be your best bet > > http://www.django-rest-framework.org/ For prosperity: No, that would not help at all. DRF is used to *provide* an API to others. He wants to *use* an API as if it was a model. So save

Re: Use an external REST API in django admin

2018-07-17 Thread Derek
If you were accessing a third-party API you could have a ForeignDataWrapper table linked to it. I have never tried this, and not sure if this would conflict with Django's ORM expectations. On Monday, 16 July 2018 16:16:59 UTC+2, micka wrote: > > Hello, > > I wish I could use the data from an e

Re: Use an external REST API in django admin

2018-07-16 Thread mathieu mickael
ok thank you very much 2018-07-17 4:15 GMT+02:00 mottaz hejaze : > even REST API needs a database managments system like postgre or mysql > > so the lowest layer is postgre or mysql or mongodb > > the upper layer on top of any one of them , your backend REST API > > read about DMS and REST API >

Re: Use an external REST API in django admin

2018-07-16 Thread mottaz hejaze
even REST API needs a database managments system like postgre or mysql so the lowest layer is postgre or mysql or mongodb the upper layer on top of any one of them , your backend REST API read about DMS and REST API On Mon, 16 Jul 2018, 20:44 Vijay Khemlani, wrote: > django rest framework

Re: Use an external REST API in django admin

2018-07-16 Thread Vijay Khemlani
django rest framework would be your best bet http://www.django-rest-framework.org/ On Mon, Jul 16, 2018 at 10:16 AM micka wrote: > Hello, > > I wish I could use the data from an external API in the administration of > Django. I wish I could list, read, edit and create objects but instead of > u

Use an external REST API in django admin

2018-07-16 Thread micka
Hello, I wish I could use the data from an external API in the administration of Django. I wish I could list, read, edit and create objects but instead of using a postgres database, I would use a REST API. Do you know a module to do it or resources that could help me? Thank you ! -- You re