'How to use this SQL statement in Django ORM

Please help me with converting this SQL statament in Django ORM

SELECT postupci.Postupak ,SUM(unosi.Komada), unosi.Radnik" \
                    " FROM unosi INNER JOIN postupci ON unosi.Operacija = postupci.Id" \
                    " AND unosi.Datum >= 2022-11-01 AND unosi.Datum < 2022-12-10 \
                    " GROUP BY postupci.Postupak"


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source