when I install the package sweetify, I get the following error Does anyone know what the reason is? I went through all the steps that were in the main dock Trac
When pipenv install uwsgi This error comes, ld: library not found for -lintl I guess it requires X-code library ? I tried this as well $xcode-select --install x
When pipenv install uwsgi This error comes, ld: library not found for -lintl I guess it requires X-code library ? I tried this as well $xcode-select --install x
I have a problem and I can't figure it out. I have the following code that must save the data that is sent to him by an http request, first on the aws bucket an
In my models.py few models related to the different entities class GuardSecurity(models.Model): id = models.UUIDField(primary_key=True, default=uuid.uuid4,
In my nested serializer i want to show only movie name and exclude the other fields [ { "id": 2, "watchlist": [ {
In my nested serializer i want to show only movie name and exclude the other fields [ { "id": 2, "watchlist": [ {
I have an app for both Android and iOS platforms which their backend is written with Django and Django-rest-framework . I've been asked to check header of reque
Hello everyone I have a blog platform, the user can add and edit blog. I used Django and Django Rest Framework to build the website, and for the frontend ReactJ
The default django user model has a is_superuser field. I would like to use this field to conditionally render components in react, i.e. get something like this
I want to install grpcio with pip(version 1.35). But I get this error: note: This error originates from a subprocess, and is likely not a problem with pip. erro
class TimeStampMixin(models.Model): id = models.CharField(max_length=60,editable=False,primary_key=True,default=generate_unique_id) created = models.Dat
I use sqlite in a Django project. I created a model called Employee, and then Education, but I forgot to add a foreign key to Employee. When I
I have this model: class OrderProduct(models.Model): order = models.ForeignKey(to=Order, on_delete=models.CASCADE) product = models.ForeignKey(to=Produc
maybe it's a silly question, but I didn't found much while googling around. So I'm on the way to transform my development environment to a deploy environment. I
I am creating a booking website for hotels using Django, I used the booking api to get the hotels with its images and location highlights... I sent to the djang
I am trying to build an image steganography application and for the encoding part I have a form with two fields, one for image and one for the message that is t
models.py class Line_items(models.Model): id = models.AutoField(primary_key=True) product = models.ForeignKey('Products' , on_delete=models.DO_NOTHING ) cl
I don't know how to explain the problem in my title, so if someone knows how to better phrase the problem I'm going to describe, I hope there is a way to update
My lab has a models.py as below: class Book(models.Model): isbn = models.CharField(max_length=10, unique=True) name = models.CharField(max_length=100)