Re: Problem with my website

2023-07-12 Thread Peter Benjamin Ani
Chat me up let’s look into it On Wed, 12 Jul 2023 at 21:20, Chetan Ganji wrote: > Have you set the default url for the website? > > Sharing your urls.py file will help someone guide you better. > > Regards, > Chetan Ganji > +91-900-483-4183 > ganji.che...@gmail.com > http://ryucoder.in > > > On

Re: Problem with my website

2023-07-12 Thread Chetan Ganji
Have you set the default url for the website? Sharing your urls.py file will help someone guide you better. Regards, Chetan Ganji +91-900-483-4183 ganji.che...@gmail.com http://ryucoder.in On Wed, Jul 12, 2023 at 11:47 PM Ben Sidney Matiko wrote: > Is the website in development stage? > > On

Re: Problem with my website

2023-07-12 Thread Ben Sidney Matiko
Is the website in development stage? On Wed, 12 Jul 2023, 18:47 Théodore KOSSI, wrote: > Hello everyone, > I have a problem with my website. When I put DEBUG = False, my website > appears in white page but when it is in True, my website works normally. > Please, anyone can help me ?? > > -- >

Re: Problem with my website

2023-07-12 Thread Carlos Pimentel_leanTech
If your website appears as a blank white page when you set `DEBUG = False` in your Django settings, it indicates that an error has occurred, and Django is not providing detailed error information to the end-user for security reasons. When `DEBUG` is set to `True`, Django shows detailed error

Problem with my website

2023-07-12 Thread Théodore KOSSI
Hello everyone, I have a problem with my website. When I put DEBUG = False, my website appears in white page but when it is in True, my website works normally. Please, anyone can help me ?? -- theodoros17@python-developer -- You received this message because you are subscribed to the Google

Re: developing a data logger

2023-07-12 Thread David Nugent
Hmm, where to start? The internet should provide many examples of doing this, and there are even fairly well-written packages that do so, some of them in python. There are *lots* of ETL solutions available now, including the king of batch ingestion - Airflow (written in Python). But, it depends

Re: developing a data logger

2023-07-12 Thread o1bigtenor
On Wed, Jul 12, 2023 at 3:38 AM David Nugent wrote: > > It depends on what you want to do. Simply gathering data and scooping it into > a db does not require Django, which will probably not help much in this > regard other than defining models/tables for your db and supporting > migrations. >

Re: developing a data logger

2023-07-12 Thread David Nugent
It depends on what you want to do. Simply gathering data and scooping it into a db does not require Django, which will probably not help much in this regard other than defining models/tables for your db and supporting migrations. If you want to provide web views or an API for this data, you're