skip to Main Content

Azure generate_blob_sas TypeError

I am using the Azure Blob Storage python SDK and trying to generate a sas token for my blob, however I keep getting a TypeError. This is how I'm calling the built-in function (generate_blob_sas). sas_blob = generate_blob_sas(account_name= account_name, container_name= container_name,…

VIEW QUESTION

How to get value from associative json in shopify liquid

{"collections"=>{"1656046380"=>[{"collection_title"=>"sport"}, {"question"=>"q_0", "answer"=>"a_0"}, {"question"=>"q_1", "answer"=>"a_1"}, {"question"=>"q_2", "answer"=>"a_2"}], "1656047118"=>[{"collection_title"=>"cars"}, {"question"=>"q_0", "answer"=>"a_0"}, {"question"=>"q_1", "answer"=>"a_1"}, {"question"=>"q_2", "answer"=>"a_2"}]}, "group"=>{"1656046878"=>[{"group_title"=>"page1"}, {"style"=>"3"}, {"selected_coll"=>"["1656046380","1656046423"]"}]}} If this is my data which I am getting using liquid for loop {%- for field in shop.metafields.advance_faq_app -%} <li>{{ shop.metafields.advance_faq_app.advance_faq_app }}</li><br/> {%-…

VIEW QUESTION
Back To Top
Search