Jump to content

a.lumley

Member
  • Posts

    2
  • Joined

  • Last visited

a.lumley's Achievements

Helping Hand

Helping Hand (3/5)

0

Reputation

  1. I started my research on that post but I was struggling with the implementation. For XML, it seems as though you just Print() the XML object and Alfred parses it but I can't get the same to work with JSON. Is it the same approach?
  2. Good morning, I'm currently trying to create a simple Script Filter Alfred 3 Workflow using Python. I found an earlier example which demonstrated how to pass XML results to a Python workflow: xmloutput = """ <?xml version="1.0" encoding="utf-8" ?> <items> <item arg="testitem"> <title>FooBar</title> <subtitle>foo bar is a test item</subtitle> <icon>icon.png</icon> </item> </items> """ print(xmloutput) My question is, what is the syntax for doing the same with the new JSON data structure? regards, Andrew
×
×
  • Create New...