|
|
|
|
|
by Nextgrid
2254 days ago
|
|
Django is a a nice framework to have in your toolbox. It'a a "batteries included" framework that gives you a consistent API for common things you need while developing an application like sessions, database access (it provides an ORM and an autogenerated admin UI based on those models), HTML template rendering, etc. You can extend it with Django REST Framework to expose a REST API (and there's Graphene for GraphQL, though I would not recommend GraphQL for other reasons). |
|