About 9,050,000 results
Open links in new tab
  1. Can comments be used in JSON? - Stack Overflow

    Yes. The JSON format has a lot of dead-space between elements and is space-insensitive in those regions, so there's no reason why you can't have single or multi-line comments there. …

  2. Reading a JSON file from S3 using Python boto3 - Stack Overflow

    Jan 13, 2018 · 6 You can use the below code in AWS Lambda to read the JSON file from the S3 bucket and process it using python. import json import boto3 import sys import logging # …

  3. Is there any standard for JSON API response format?

    Do standards or best practices exist for structuring JSON responses from an API? Obviously, every application's data is different, so that much I'm not concerned with, but rather the "response

  4. "/.well-known/appspecific/com.chrome.devtools.json"' request

    May 20, 2025 · This is a request made by Chrome's DevTools as part of the Automatic Workspace Folders feature: devservers can inform the developer tools running in the browser …

  5. parsing - How to reformat JSON in Notepad++ - Stack Overflow

    Oct 13, 2009 · Ex: I had one JSON object on each line, without being wrapped in an array, and it formatted the first line's object, and deleted the other 2. Undo-ing and wrapping in the array, …

  6. What is the difference between launch.json and tasks.json in visual ...

    Jan 5, 2017 · Why do we have two configurations to setup the build environment in Visual Studio Code? What is the difference between them?

  7. python - How to prettyprint a JSON file? - Stack Overflow

    jq . some.json and you get colors as a bonus (and way easier extendability). Addendum: There is some confusion in the comments about using jq to process large JSON files on the one hand, …

  8. How to open Visual Studio Code's 'settings.json' file

    Aug 9, 2023 · I did it many times, and each time I forgot where it was. Menu File → Preferences → Settings. I get this: I want to open file settings.json (editable JSON file) instead. How can I …

  9. HTTP requests and JSON parsing in Python - Stack Overflow

    Jun 17, 2011 · The requests Python module takes care of both retrieving JSON data and decoding it, due to its builtin JSON decoder. Here is an example taken from the module's …

  10. python - Reading JSON from a file - Stack Overflow

    If you are reading the data from the Internet instead, the same techniques can generally be used with the response you get from your HTTP API (it will be a file-like object); however, it is …