Introduction: Working with dates and times is a common task in programming. In this tutorial, I will show you how I generated a list of weeks for multiple years in Python using the datetime module. Problem: The problem I was trying to solve was to generate a list of weeks that starts from the current… Continue reading Generating a List of Weeks for Multiple Years in Python
Blog
How to setup mandatory webhooks for a public Shopify app in your Django application
When you want to publish a public Shopify app, you need to setup three mandatory webhooks. shopify.dev provides good documentation and a few code examples, which you’ll all find on this page. What kind of logic to write within the # Process webhook payload comments will depend on your approach and project structure. In my… Continue reading How to setup mandatory webhooks for a public Shopify app in your Django application