]> xn--ix-yja.es Git - alex.git/commitdiff
Add note about APIs
authoralexpdp7 <alex@pdp7.net>
Tue, 18 Feb 2025 19:36:32 +0000 (20:36 +0100)
committeralexpdp7 <alex@corcoles.net>
Tue, 18 Feb 2025 19:37:06 +0000 (20:37 +0100)
programming/python/about_django.md

index 00b79459daf114f2bbf68b554cd186f1f61e9b0b..cf4a78dd1898fa4f607830214d7049a14be1bbf2 100644 (file)
@@ -109,3 +109,6 @@ For example:
 * [Django REST framework](https://www.django-rest-framework.org/) provides a layer to provide REST APIs on top of the Django ORM.
 * Projects exist to add support for Django for front end frameworks such as [htmx](https://htmx.org/) or [Hotwire](https://hotwired.dev/).
   These frameworks are an intermediate step between traditional server-side-rendered applications and JavaScript front ends, enabling most of the benefits of JavaScript front ends within the traditional server-side rendering approach.
+
+Additionally, providing an API is also useful beyond JavaScript front ends.
+APIs are necessary for other purposes, such as implementing mobile apps to interact with your application, or just providing an API for programmatic access to your application.