Re: Facing FileNotFound Error

2022-12-26 Thread 'Kasper Laudrup' via Django users
On 26/12/2022 09.11, MaheshKumar wrote: Hi, I just facing an FileNotFound Error while runserver through the poetry shell with settings config. Please help to resolve this This will guide you in the right direction: https://www.propublica.org/nerds/how-to-ask-programming-questions Kind re

Re: How to allow user to delete their own profile after login with their default id.

2022-12-26 Thread Raj Mandaviya
Hey, Here is what you can do: When User clicks the Delete profile button you use Javascript Confirm then if they press OK you go to the view. def delete_account(request): user = User.objects.get(id=request.user.id) # You first logout the user then delete the account logout(request)

can any one help

2022-12-26 Thread 'Gaurav Mishra' via Django users
i have a list of items .and user can generate pdf of that item but one condition is there when user genrate pdf after that when new item added in list and after adding if your generate pdf then he show only newly added item. i need help? -- This e-mail and any files transmitted with it may co

Re: Need help Scraping a couple of websites

2022-12-26 Thread Raj Mandaviya
Thank you for the info. Does this mean I can make a repo for the Scrapper I created with Flask on GitHub and not be affected? On Friday, December 23, 2022 at 11:41:27 PM UTC+5:30 bscho...@schollnick.net wrote: > > I can scrap for you. I just created an IMDB scrapper(which is illegal, > so not

Re: can any one help

2022-12-26 Thread 'Kasper Laudrup' via Django users
On 25/12/2022 21.18, 'Gaurav Mishra' via Django users wrote: i have a list of items .and user can generate pdf of that item but one condition is there when user genrate pdf after that when new item added in list and after adding if your generate pdf then he show only newly added item. i need

Re: Need help Scraping a couple of websites

2022-12-26 Thread John McClain
I’m not needing to scrape anything illegal I need product details and associated images from collections on furniture mfg websites I have permission to do so no issues with data being collected I need data scraped to be cleansed and delivered in csv I do not need the scraping routine designed f

Re: can any one help

2022-12-26 Thread Eng Thanoon
Don't understand questions perfect. But if your question is you have list and make pdf Then try to generate new pdf from items You want the new pdf have only new items ( not include old items in new pdf ) ? You can add( is_add_to_pdf ) bool field to your items and make it true when added to pdf Th

Re: Permission for admin to add patient

2022-12-26 Thread Karel Curtis
Thank you for helping. Le dim. 18 déc. 2022 à 00:58, sere kaba a écrit : > from .model import Patient > admin.site.register(Patient) > or > @admin.register(Patient) > > Le mardi 13 décembre 2022 à 13:02:28 UTC, abdur.r...@gmail.com a écrit : > >> Are you want to register your model on admin? >>