One comes to a task that has to do with counting items in a database. We will describe the right approach here. Despite being so obvious I did not find much of the docs for junior developers to watch and learn. Here is a sample task and solution: Let's assume we have a model like so:   class  Cycle (db.Model):      id  =  db.Column(db.Integer,  primary_key= True )      object_id  =  db.Column(db.String,  nullable= False )   Sample date populated into it will be:   {     id :  1 ,     object_id:  'unique1'  },  {     id :  2 ,     object_id:  'unique1'  },  {     id :  3 ,     object_id:  'unique2'  },  {     id :  4 ,     object_id:  'unique2'  },  {     id :  5 ,     object_id:  'unique2'  },  {     id :  6 ,     object_id:  'unique3'  }   We need to count unique model instances with same  object_id . To achieve this relatively simple task one would go straightforward. E.g. Fetch all the Cycle  instances with a simple query and then...
My thoughts/recipes on Django, Python, JS and other things I try...