{
  "result": {
    "3.0.2+ppc64le1": {
      "name": "hjson",
      "version": "3.0.2+ppc64le1",
      "metadata_version": "2.4",
      "summary": "Hjson, a user interface for JSON.",
      "home_page": "http://github.com/hjson/hjson-py",
      "author": "Christian Zangl",
      "author_email": "laktak@cdak.net",
      "maintainer": "",
      "maintainer_email": "",
      "license": "MIT License",
      "description": "hjson-py\n========\n\n`Hjson`_, a user interface for JSON\n\nHjson works with Python 2.5+ and Python 3.3+ (based on `simplejson`_)\n\nInstallation\n============\n\n-  ``pip install hjson``\n\n-  or download from https://pypi.python.org/pypi/hjson\n\nCommandline\n-----------\n\n::\n\n    Usage:\n      hjson [options]\n      hjson [options] <input>\n      hjson (-h | --help)\n      hjson (-V | --version)\n\n    Options:\n      -h --help     Show this screen.\n      -j            Output as formatted JSON.\n      -c            Output as JSON.\n      -V --version  Show version.\n\nE.g. ``echo '{\"json\":\"obj\"}' | hjson``\n\n\nUsage\n=====\n\n.. code-block:: python\n\n    import hjson\n\nDecoding Hjson\n--------------\n\n.. code-block:: python\n\n    text = \"\"\"{\n      foo: a\n      bar: 1\n    }\"\"\"\n\n    hjson.loads(text)\n\nResult:\n\n.. code-block:: python\n\n    OrderedDict([('foo', 'a'), ('bar', 1)])\n\nEncoding Python object hierarchies\n----------------------------------\n\n.. code-block:: python\n\n    hjson.dumps({'foo': 'text', 'bar': (1, 2)})\n\nResult:\n\n::\n\n    {\n      foo: text\n      bar:\n      [\n        1\n        2\n      ]\n    }\n\nEncoding as JSON\n----------------\n\nNote that this is probably not as performant as the simplejson version.\n\n.. code-block:: python\n\n    hjson.dumpsJSON(['foo', {'bar': ('baz', None, 1.0, 2)}])\n\nResult: ``'[\"foo\", {\"bar\": [\"baz\", null, 1.0, 2]}]'``\n\nAPI\n===\n\n`hjson-py`_\n\n.. _Hjson: http://hjson.org\n.. _simplejson: https://github.com/simplejson/simplejson\n.. _hjson-py: http://hjson.github.io/hjson-py/\n",
      "keywords": "json comments configuration",
      "platform": [],
      "classifiers": [
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: MIT License",
        "License :: OSI Approved :: Academic Free License (AFL)",
        "Programming Language :: Python",
        "Programming Language :: Python :: 2",
        "Programming Language :: Python :: 2.6",
        "Programming Language :: Python :: 2.7",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.3",
        "Programming Language :: Python :: 3.4",
        "Programming Language :: Python :: 3.5",
        "Programming Language :: Python :: Implementation :: CPython",
        "Programming Language :: Python :: Implementation :: PyPy",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Environment :: MetaData :: IBM Python Ecosystem"
      ],
      "download_url": "",
      "supported_platform": [],
      "comment": "",
      "provides": [],
      "requires": [],
      "obsoletes": [],
      "project_urls": [],
      "provides_dist": [],
      "obsoletes_dist": [],
      "requires_dist": [],
      "requires_external": [],
      "requires_python": "",
      "description_content_type": "",
      "provides_extras": "",
      "dynamic": "summary",
      "license_expression": "",
      "license_file": "LICENSE.txt",
      "+links": [
        {
          "rel": "releasefile",
          "hash_spec": "sha256=c5efdabec0cd8e952a7fee2fbcbd66646042e82ac37524753cf304cf5217de34",
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/c5e/fdabec0cd8e95/hjson-3.0.2+ppc64le1-py3-none-any.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                3,
                16,
                9,
                19,
                47
              ],
              "dst": "ppc64le/linux"
            }
          ]
        }
      ]
    },
    "3.0.2": {
      "name": "hjson",
      "version": "3.0.2",
      "metadata_version": "2.4",
      "summary": "Hjson, a user interface for JSON.",
      "home_page": "http://github.com/hjson/hjson-py",
      "author": "Christian Zangl",
      "author_email": "laktak@cdak.net",
      "maintainer": "",
      "maintainer_email": "",
      "license": "MIT License",
      "description": "hjson-py\n========\n\n`Hjson`_, a user interface for JSON\n\nHjson works with Python 2.5+ and Python 3.3+ (based on `simplejson`_)\n\nInstallation\n============\n\n-  ``pip install hjson``\n\n-  or download from https://pypi.python.org/pypi/hjson\n\nCommandline\n-----------\n\n::\n\n    Usage:\n      hjson [options]\n      hjson [options] <input>\n      hjson (-h | --help)\n      hjson (-V | --version)\n\n    Options:\n      -h --help     Show this screen.\n      -j            Output as formatted JSON.\n      -c            Output as JSON.\n      -V --version  Show version.\n\nE.g. ``echo '{\"json\":\"obj\"}' | hjson``\n\n\nUsage\n=====\n\n.. code-block:: python\n\n    import hjson\n\nDecoding Hjson\n--------------\n\n.. code-block:: python\n\n    text = \"\"\"{\n      foo: a\n      bar: 1\n    }\"\"\"\n\n    hjson.loads(text)\n\nResult:\n\n.. code-block:: python\n\n    OrderedDict([('foo', 'a'), ('bar', 1)])\n\nEncoding Python object hierarchies\n----------------------------------\n\n.. code-block:: python\n\n    hjson.dumps({'foo': 'text', 'bar': (1, 2)})\n\nResult:\n\n::\n\n    {\n      foo: text\n      bar:\n      [\n        1\n        2\n      ]\n    }\n\nEncoding as JSON\n----------------\n\nNote that this is probably not as performant as the simplejson version.\n\n.. code-block:: python\n\n    hjson.dumpsJSON(['foo', {'bar': ('baz', None, 1.0, 2)}])\n\nResult: ``'[\"foo\", {\"bar\": [\"baz\", null, 1.0, 2]}]'``\n\nAPI\n===\n\n`hjson-py`_\n\n.. _Hjson: http://hjson.org\n.. _simplejson: https://github.com/simplejson/simplejson\n.. _hjson-py: http://hjson.github.io/hjson-py/\n",
      "keywords": "json comments configuration",
      "platform": [],
      "classifiers": [
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: MIT License",
        "License :: OSI Approved :: Academic Free License (AFL)",
        "Programming Language :: Python",
        "Programming Language :: Python :: 2",
        "Programming Language :: Python :: 2.6",
        "Programming Language :: Python :: 2.7",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.3",
        "Programming Language :: Python :: 3.4",
        "Programming Language :: Python :: 3.5",
        "Programming Language :: Python :: Implementation :: CPython",
        "Programming Language :: Python :: Implementation :: PyPy",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Environment :: MetaData :: IBM Python Ecosystem"
      ],
      "download_url": "",
      "supported_platform": [],
      "comment": "",
      "provides": [],
      "requires": [],
      "obsoletes": [],
      "project_urls": [],
      "provides_dist": [],
      "obsoletes_dist": [],
      "requires_dist": [],
      "requires_external": [],
      "requires_python": "",
      "description_content_type": "",
      "provides_extras": [],
      "dynamic": [
        "author",
        "author-email",
        "classifier",
        "description",
        "home-page",
        "keywords",
        "license",
        "license-file",
        "platform",
        "summary"
      ],
      "license_expression": "",
      "license_file": [
        "LICENSE.txt"
      ],
      "+links": [
        {
          "rel": "releasefile",
          "hash_spec": "sha256=30d6fd07f006a3d8c5dc7b1678177f5ec39117e7b0fde371dd5ca408096da15d",
          "hashes": {
            "sha256": "30d6fd07f006a3d8c5dc7b1678177f5ec39117e7b0fde371dd5ca408096da15d"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/30d/6fd07f006a3d8/hjson-3.0.2-py3-none-any.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                12,
                42,
                31
              ],
              "dst": "ppc64le/linux"
            }
          ]
        }
      ]
    }
  },
  "type": "projectconfig"
}
