Re: API for writing a new database backend

2018-07-20 Thread Derek
If you are looking for a spec for writing an API, you could do worse than: https://github.com/OAI/OpenAPI-Specification If you are looking for a Django tool for creating the API, then: http://www.django-rest-framework.org/ On Wednesday, 18 July 2018 23:32:09 UTC+2, Nuno wrote: > > Hi, > I'm sta

Re: API for writing a new database backend

2018-07-19 Thread C. Kirby
I haven't worked on DB backends, but I'm pretty sure you want to implement everything in db/backends/base https://github.com/django/django/tree/master/django/db/backends/base Also here is a page with some info and links to talks and concepts about writing a backend (slightly out of date, but sh