Mirco
Yeah maybe
But you are free to do whatever you want so happy chatting
Mirco
Ghorz
Understand the language indept before framework, else you'll hit a wall.
Do some study on data structure and algorithm. It will do you great good.
Anonymous
Anonymous
But can someone tell how to dm
Anonymous
Ghorz
Brush up on database theory. Datatypes
You'll be good to go. Lastly do not ask for help. Debug until you catch fever. Then ask for help.
Stackoverflow your only hope. Else ask the group. 😊
Anonymous
محمد دلشاد
Ghorz
You can achieve this with vanilla js
PeeKay
محمد دلشاد
bikrant
Hi do you guys share time for programming or just project development?
Tony Stark
https://stackoverflow.com/questions/62021047/how-to-manage-hierarchical-categories-in-django?noredirect=1#comment109705190_62021047
Can anyone help me with this?
utkarsh
Anonymous
What is the difference between:
class Person(models.Model):
name = models.CharField(max_length=128)
def __str__(self):
return self.name
and:
class Person(models.Model):
name = models.CharField(max_length=128)
def __str__(self):
return u'%s' % (self.name)
Which one is the correct one?
Стас
@Tim equals
Manuel
someone has done a youtube downloader
Manuel
with pytube
Manuel
pytube3
KENNEDY
Anonymous
Godspower
Anyone know where I can get a good tutorial, I’m tryna build an e-commerce website using Django
Anonymous
I want to fetch one data at a time from database.
Anonymous
if i use for loop i am getting all the data in loop.
Anonymous
If anyone can help
Kamlesh
Table. Objects.filter(user=request.user)
Kamlesh
user1=request.Post['username']
m= table. objects.get(username=user1)
Data=m.field
Kamlesh
Worked..??
Mr.m
How to make registration and login with authentic from database
Sdm
Anyone pls share some good tutorial link with react and django
#needhelp
Sdm
Tony Stark
Varun
My registered user data is not getting saved in db....can anyone plz help me with that...i have also used method.request==POST concept
Anonymous
Help me please my questions is navbar is same for every page so how i active it with each page
Anonymous
I want to active effect on each page dont suggest bootstrap
cj
Anonymous
Anonymous
For each page
Vishal
Anonymous
Ankush
Can anyone help me with pytest please
Doragonsureiyā
Can anyone help me with pytest please
Please don't ask meta questions like:
"Any user of $x here?"
"Anyone used technology $y?"
"Hello I need help on $z"
Just ask about your problem directly! With 60k+ people the probability that someone will help is pretty high.
Also please read: http://catb.org/~esr/faqs/smart-questions.html
Ankush
Im creating a user in setUp() method but im unable to get token out of this ,and when i get response it Shows user doesn't exist..whys. That
Romila
Hi I'm getting Value Error as -httpresponse didn't send response instead it send none
Romila
I have done form validation also
Amit
Amit
*Your code
Romila
Ok
A
Hi Everybody, I'm trying to add data to my current serializer but it's not working, can someone help. https://stackoverflow.com/questions/62036676/update-serializer-data-in-django
Ankush
Doez anyone know how to save an user object while creating in setUp method ,cause when i try to fetch the object in other method it show user Doesnt exist
Anirudh Reddy🇮🇳
I want django video lecture please msg if you have
Shreehari
Hey guys
im working on an app where i want to get list of price history of a particular product.
eg: there's a product called machine. Price for this was updated many times. I want to get list of the each updated prices with date and time.
How should my approach to this be ?
Cheap
Shreehari
Prakash
I am creating two database for two different apps in single project
When i run migrate
All tables are creating in default db
Prakash
DATABASE_ROUTERS = ['workflows.workflow_dbrouter.WorkflowsDBRouter', ]
DATABASE_APPS_MAPPING = {'erp': 'default', 'workflows': 'db_workflow'}
DATABASES = {
'db_workflow': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'wf.sqlite3'),
},
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'django.sqlite3'),
},
}
Артур
Hello!
Share your opinion, pls.
I need to allow writing to a specific table during the session each time.
The project is large and appending .using (db_name) seems like a problem.
db_name depends on the username.
I think it's worth overriding the standard models.Model, where I would use DB_NAME as a class variable. In methods where using is used, assign using = DB_NAME. Then call the parent method.
And assign DB_NAME in wsgi middleware.
How good is this idea?
Anshul
Error: Could not find or load main class GUIdriver
Anshul
can anybody tell me about this error?
Anshul
this is the code in py
Doragonsureiyā
To share code or error tracebacks please use an online pasting service, here is a list of suggested sites:
- https://del.dog
- https://dpaste.org
- https://linkode.org
- https://hastebin.com
- https://bin.kv2.dev
Anshul
Anonymous
Is this related to Django?🤔🤔
Anshul
No!!
Anshul
its related to GUIdriver openCV
Mirco
Bral Bral
Hey! How i can retrieve django user password from user object instead of sha-password ?
Mirco
Bral Bral
Mirco