Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
How do I create a new model for every user in django. Like a new list of items for every new user
That is not something you should do.
A model is the single, definitive source of information about your
data.
This implies that the model can't be different for every single entity (the user in this case) in your app. A definitive source for your data should not have to be unique for every user.
For more on Django models: https://docs.djangoproject.com/en/1.10/topics/db/models/
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 days ago.
Improve this question
I want to multiple role in django. I also create default auther user. But i want add login in second database table.
I try to authenticate(username='john', password='secret') function but it is working only django default author. I want to use second database table then how can i authenticate the second user and login to the site. Please advice currently working django 4.1 version.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 days ago.
Improve this question
I'm making a code in python with flask that deals with registering products, and I'm using buttons that allow me to edit and delete the product, I can't get it to edit the product every time I try, it doesn't give me an error but it doesn't get edited, I do not know how to fix it
I checked the query to mysql but it's not that, and I've been checking for a long time and I don't know what it is
I am using html, python, js
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
My api needs to be something like this:
api/search_fields=country_name,region,city,pincode,dma&exclude=false,true,true,false&country_name=india,pakistan®ion=tamil nadu,jammu kashmir,&city=ahmedabad&pincode=112&dma=1
Means if country_name is excluded their correspoding region,city,pincode,dma will not come in result.Same way if region is exluded city,pincode,dma will not come in results of which all countries are excluded and which all regions are excluded.
How can i write mysql template in python for all these.
Although the question is very wide, I will try to answer.
The general idea is checking what the user has specified in the request and then hide absent columns in the output. We call it a view logic. You can take care of it in Controller or in Template directly.
Probably, it does not help you too much, but I cannot answer another way so broad question.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I’d like to add a command that checks how many messages a user sent in the entire server in the last x amount of time (say, a week).
Yes, but you'd have to use the TextChannel.history method for each text channel, filter the messages by checking for that user as the author, and add up the number of messages yourself.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm just wondering if there's a simple enough way to iterate over all comments made by a particular user (I want to check for a particular phrase).
Any help is appreciated :)
You can't get all comments, if the user has more than 1,000 comments. It is a limitation of the reddit API. However, the code below will get (and print the body) of all comments made by a user.
import praw
r = praw.Reddit('Your unique user agent')
user = r.get_redditor('REDDITOR-USER-HANDLE')
for comment in user.get_comments(limit=None):
print comment.body
A coupe notes:
Remember to have a unique user agent
REDDITOR-USER-HANDLE is the user name of the user you are looking at