Live data from Hacker News

Ask HN: What's the simplest way to build and maintain CRUD api?

news.ycombinator.com

1–3 of 3 posts

Re: Ask HN: What's the simplest way to build and maintain CRUD api?

#2
I recommend using Django Rest Framework. Django gives you great admin forms for any and all data models and Django Rest Framework gives you a browseable API with in browser forms for your convenience. In addition it has a super effective structure for creating easy to maintain and reusable code.

Re: Ask HN: What's the simplest way to build and maintain CRUD api?

#3
post #2

I recommend using Django Rest Framework. Django gives you great admin forms for any and all data models and Django Rest Framework gives you a browseable API with in browser forms for your convenience. In addition it has a super effective structure for creating easy to maintain and reusable code.

Also, Django's ORM is database agnostic, can develop with a SQLite3 and deploy on postgres or mysql without any change to the code.