{ "@context": "https://spdx.org/rdf/3.0.1/spdx-context.jsonld", "@graph": [ { "@id": "_:creationInfo_0", "type": "CreationInfo", "specVersion": "3.0.1", "createdBy": [ "https://anchore.com/syft/dir/repo/openeuler/openEuler-24.03-LTS-SP1/update/x86_64-b6bfb2a1-4f9a-4f20-a96a-8312bc1ad0da-specv3/SPDXRef-gnrtd0" ], "createdUsing": [ "https://anchore.com/syft/dir/repo/openeuler/openEuler-24.03-LTS-SP1/update/x86_64-b6bfb2a1-4f9a-4f20-a96a-8312bc1ad0da-specv3/additionalToolSPDXRef-gnrtd1" ], "created": "2026-08-08T18:37:56Z" }, { "@id": "_:creationInfo_1", "type": "CreationInfo", "specVersion": "3.0.1", "createdBy": [ "https://anchore.com/syft/dir/repo/openeuler/openEuler-24.03-LTS-SP1/update/x86_64-b6bfb2a1-4f9a-4f20-a96a-8312bc1ad0da-specv3/SPDXRef-gnrtd2" ], "createdUsing": [ "https://anchore.com/syft/dir/repo/openeuler/openEuler-24.03-LTS-SP1/update/x86_64-b6bfb2a1-4f9a-4f20-a96a-8312bc1ad0da-specv3/additionalToolSPDXRef-gnrtd3" ], "created": "2026-08-08T18:37:56Z" }, { "spdxId": "https://anchore.com/syft/dir/repo/openeuler/openEuler-24.03-LTS-SP1/update/x86_64-b6bfb2a1-4f9a-4f20-a96a-8312bc1ad0da-specv3/SPDXRef-gnrtd34331", "type": "Relationship", "relationshipType": "hasConcludedLicense", "to": [ "https://anchore.com/syft/dir/repo/openeuler/openEuler-24.03-LTS-SP1/update/x86_64-b6bfb2a1-4f9a-4f20-a96a-8312bc1ad0da-specv3/SPDXRef-gnrtd775" ], "from": "https://anchore.com/syft/dir/repo/openeuler/openEuler-24.03-LTS-SP1/update/x86_64-b6bfb2a1-4f9a-4f20-a96a-8312bc1ad0da-specv3/SPDXRef-gnrtd34330", "creationInfo": "_:creationInfo_0" }, { "spdxId": "https://anchore.com/syft/dir/repo/openeuler/openEuler-24.03-LTS-SP1/update/x86_64-b6bfb2a1-4f9a-4f20-a96a-8312bc1ad0da-specv3/SPDXRef-gnrtd34333", "type": "Relationship", "relationshipType": "hasDeclaredLicense", "to": [ "https://anchore.com/syft/dir/repo/openeuler/openEuler-24.03-LTS-SP1/update/x86_64-b6bfb2a1-4f9a-4f20-a96a-8312bc1ad0da-specv3/SPDXRef-gnrtd775" ], "from": "https://anchore.com/syft/dir/repo/openeuler/openEuler-24.03-LTS-SP1/update/x86_64-b6bfb2a1-4f9a-4f20-a96a-8312bc1ad0da-specv3/SPDXRef-gnrtd34330", "creationInfo": "_:creationInfo_0" }, { "spdxId": "https://anchore.com/syft/dir/repo/openeuler/openEuler-24.03-LTS-SP1/update/x86_64-b6bfb2a1-4f9a-4f20-a96a-8312bc1ad0da-specv3/SPDXRef-gnrtd775", "type": "simplelicensing_LicenseExpression", "simplelicensing_licenseExpression": "BSD-3-Clause", "creationInfo": "_:creationInfo_0" }, { "spdxId": "https://anchore.com/syft/dir/repo/openeuler/openEuler-24.03-LTS-SP1/update/x86_64-b6bfb2a1-4f9a-4f20-a96a-8312bc1ad0da-specv3/SPDXRef-gnrtd34332", "type": "Organization", "name": "http://openeuler.org", "creationInfo": "_:creationInfo_0" }, { "spdxId": "https://anchore.com/syft/dir/repo/openeuler/openEuler-24.03-LTS-SP1/update/x86_64-b6bfb2a1-4f9a-4f20-a96a-8312bc1ad0da-specv3/SPDXRef-gnrtd34330", "type": "software_Package", "software_copyrightText": "", "suppliedBy": "https://anchore.com/syft/dir/repo/openeuler/openEuler-24.03-LTS-SP1/update/x86_64-b6bfb2a1-4f9a-4f20-a96a-8312bc1ad0da-specv3/SPDXRef-gnrtd34332", "software_downloadLocation": "NOASSERTION", "summary": "Development documents and examples for Werkzeug", "software_packageVersion": "0:2.2.3-4.oe2403sp1", "software_homePage": "https://palletsprojects.com/p/werkzeug/", "description": "*werkzeug* German noun: \"tool\". Etymology: *werk* (\"work\"), *zeug* (\"stuff\")\nWerkzeug is a comprehensive `WSGI`_ web application library. It began as\na simple collection of various utilities for WSGI applications and has\nbecome one of the most advanced WSGI utility libraries.\nIt includes:\n- An interactive debugger that allows inspecting stack traces and\n source code in the browser with an interactive interpreter for any\n frame in the stack.\n- A full-featured request object with objects to interact with\n headers, query args, form data, files, and cookies.\n- A response object that can wrap other WSGI applications and handle\n streaming data.\n- A routing system for matching URLs to endpoints and generating URLs\n for endpoints, with an extensible system for capturing variables\n from URLs.\n- HTTP utilities to handle entity tags, cache control, dates, user\n agents, cookies, files, and more.\n- A threaded WSGI server for use while developing applications\n locally.\n- A test client for simulating HTTP requests during testing without\n requiring running a server.\nWerkzeug doesn't enforce any dependencies. It is up to the developer to\nchoose a template engine, database adapter, and even how to handle\nrequests. It can be used to build all sorts of end user applications\nsuch as blogs, wikis, or bulletin boards.\n`Flask`_ wraps Werkzeug, using it to handle the details of WSGI while\nproviding more structure and patterns for defining powerful\napplications.", "name": "python-werkzeug-help", "software_sourceInfo": "acquired package info from repodata DB: repodata/1b484c8eb5b8229fba6b5a5b11fe895b7104760061a10c49a7af41194c2b52a2-primary.sqlite.bz2", "software_packageUrl": "pkg:rpm/python-werkzeug-help@2.2.3-4.oe2403sp1?arch=noarch&epoch=0&upstream=python-werkzeug-2.2.3-4.oe2403sp1.src.rpm", "creationInfo": "_:creationInfo_0" }, { "spdxId": "https://anchore.com/syft/dir/repo/openeuler/openEuler-24.03-LTS-SP1/update/x86_64-b6bfb2a1-4f9a-4f20-a96a-8312bc1ad0da-specv3/additionalToolSPDXRef-gnrtd1", "type": "Tool", "name": "syft-[not provided]", "creationInfo": "_:creationInfo_0" }, { "spdxId": "https://anchore.com/syft/dir/repo/openeuler/openEuler-24.03-LTS-SP1/update/x86_64-b6bfb2a1-4f9a-4f20-a96a-8312bc1ad0da-specv3/additionalToolSPDXRef-gnrtd3", "type": "Tool", "name": "syft-[not provided]", "creationInfo": "_:creationInfo_1" } ] }