LLyamainsupercoder.hashnode.dev路Jun 5, 2021 路 4 min readWorking with Geo馃寧DjangoGeoDjango is a built-in application that is included as a contrib module in Django. It鈥檚 actually a complete framework itself that can also be used separately from Django. It provides a toolbox of utilities for building GIS web applications. Purpose ...00
LLyamainsupercoder.hashnode.dev路May 24, 2021 路 4 min readAuthenticate With DjoserREST implementation of Django authentication system. djoser library provides a set of Django Rest Framework views to handle basic actions such as registration, login, logout, password reset and account activation. It works with custom user model. Req...00
LLyamainsupercoder.hashnode.dev路May 22, 2021 路 6 min readElastic Search + DjangoRequirements: Django Elastic Search Install (required version 6) Drf Haystack Poetry Install or you can use pip or pipenv Project Setup: $ mkdir dj_elastic && cd dj_elastic $ python3 -m venv env $ source env/bin/activate $ poetry init $ poetry add...01A