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 on

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 def