Geschrieben von David Blishen
1. JSON Helper also makes it easy to parse the responses of many popular web services directly into AppleScript with convenience methods for fetching and parsing the responses from URLs.
2. JSON Helper lets you convert JSON directly into AppleScript records, lists and strings, and convert AppleScript records, lists and strings into JSON.
3. JSON Helper is an agent which allows you to do useful things with JSON (JavaScript Object Notation) directly from AppleScript.
4. JSON Helper is by far the easiest way to work with JSON in AppleScript.
5. JSON Helper has no interface, and runs in the background waiting for AppleScripts to ask it to do something.
6. See our web page for more information and a set of useful examples.
Herunterladen und Installieren JSON Helper for AppleScript - PC
Download für PC - Server 1 -->Intel, 64-bit processor, OS X 10.7 or later.
OS vereinbarkeit:ja. Die App ist 100 Prozent (100%) sicher zum Herunterladen und Installieren. Unsere Download-Links stammen aus sicheren Quellen und werden häufig virengescannt, um Sie zu schützen
amazing app
Reading from JSON like ``` set milefile to ("hd:Users:username:Library:Application Support:Google Play Music Desktop Player:json_store:playback.json") set theFileContents to (read file milefile) tell application "JSON Helper" set jsonDetails to read JSON from theFileContents return (artist of song of jsonDetails & " - " & title of song of jsonDetails) end tell ``` I'm mindblown, thank you so much <3