Here I want to create a heatmap when a Lead is created, it'll create an example api for the particular API. This is my lead model and another model for the api,
I have a model Item class Item(models.Model): id = models.IntegerField(primary_key=True) title = models.CharField(max_length=140, blank=True) descr
When I try to deserialize some data into an object, if I include a field that is unique and give it a value that is already assigned to an object in the databas
I have this problem where i get the response when trying to use a rest api: "Access to fetch at 'https://kollektivet.app:8082/api/login/' from origin 'https://k
I have model with a field validator from django.db import models from django.core.validators import MinValueValidator, MaxValueValidator class MyModel(model.
Hy please am new to Django,I have a childmodel(relationship) referencing a parent model(Profile) through a foreign key. I want to get the relationship status of
I'm trying to design a database that would save matches and players in a 3v3 game. So far my models look like this : class Player(models.Model): user = mode
So the code is very simple: views.py @csrf_protect def index(request): global userPersonalInformation if request.method == "POST": username =
I know this is a simple question, sorry. I just want to return a simple string, no templates. I have my view: def myview(request): return "return this st
I am trying to open a file that would be uploaded through the django FileField attribute. I also want to read the contents of the file and output it. But when I
I'm writing some API functionality for my project using Python 3.4 and Django 1.6. All functionality works fine, but I want execute one function for all that k
I am trying to use Pyinstaller with django rest, it generates the .exe well but there is an error at the moment of executing the .exe, the error is this Module
The model is class WeeklyStrMst(BaseModel): StoreId = models.AutoField(primary_key=True) TDLinx_No = models.IntegerField(blank=True, null=True, default=
I'm using Django Rest Framework and Token Authentication. Everything works great so far. http://www.django-rest-framework.org/api-guide/authentication#tokenaut
I had mistakenly deleted my migration folders for all my apps in my project. I therefore had to redo makemigrations and migrate for each of those apps. When th
I have the following consumer: class ChatConsumer(AsyncJsonWebsocketConsumer): pusher = None async def connect(self): print(self.scope)
I'm trying to deploy Django project to Elastic Beanstalk. I'm following their guide: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create-deploy-python
Apologies since this might not be the best way to word the question nor is this a coding question per say. I get the general process of creating a staff user wi
I have a Django website in production and a while back I successfully hosted my static files using Whitenoise so I could use them in production. Now a few month
I want to pass some arguments to DRF Serializer class from Viewset, so for I have tried this: class OneZeroSerializer(rest_serializer.ModelSerializer): de