content
stringlengths
1
103k
path
stringlengths
8
216
filename
stringlengths
2
179
language
stringclasses
15 values
size_bytes
int64
2
189k
quality_score
float64
0.5
0.95
complexity
float64
0
1
documentation_ratio
float64
0
1
repository
stringclasses
5 values
stars
int64
0
1k
created_date
stringdate
2023-07-10 19:21:08
2025-07-09 19:11:45
license
stringclasses
4 values
is_test
bool
2 classes
file_hash
stringlengths
32
32
Wheel-Version: 1.0\nGenerator: hatchling 1.27.0\nRoot-Is-Purelib: true\nTag: py3-none-any\n
.venv\Lib\site-packages\jsonschema-4.24.0.dist-info\WHEEL
WHEEL
Other
87
0.5
0
0
vue-tools
437
2024-11-06T19:28:05.325181
BSD-3-Clause
false
e2fcb0ad9ea59332c808928b4b439e7a
Copyright (c) 2013 Julian Berman\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the "Software"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n
.venv\Lib\site-packages\jsonschema-4.24.0.dist-info\licenses\COPYING
COPYING
Other
1,057
0.7
0
0
awesome-app
288
2024-03-09T07:23:32.808900
BSD-3-Clause
false
7a60a81c146ec25599a3e1dabb8610a8
"""\nLoad all the JSON Schema specification's official schemas.\n"""\n\nimport json\n\ntry:\n from importlib.resources import files\nexcept ImportError:\n from importlib_resources import ( # type: ignore[import-not-found, no-redef]\n files,\n )\n\nfrom referencing import Resource\n\n\ndef _schemas():\n """\n All schemas we ship.\n """\n # importlib.resources.abc.Traversal doesn't have nice ways to do this that\n # I'm aware of...\n #\n # It can't recurse arbitrarily, e.g. no ``.glob()``.\n #\n # So this takes some liberties given the real layout of what we ship\n # (only 2 levels of nesting, no directories within the second level).\n\n for version in files(__package__).joinpath("schemas").iterdir():\n if version.name.startswith("."):\n continue\n for child in version.iterdir():\n children = [child] if child.is_file() else child.iterdir()\n for path in children:\n if path.name.startswith("."):\n continue\n contents = json.loads(path.read_text(encoding="utf-8"))\n yield Resource.from_contents(contents)\n
.venv\Lib\site-packages\jsonschema_specifications\_core.py
_core.py
Python
1,140
0.95
0.210526
0.21875
vue-tools
167
2025-02-15T11:32:35.216667
Apache-2.0
false
4c08cd042d3545986308d1d1a5b84112
"""\nThe JSON Schema meta-schemas and vocabularies, exposed as a Registry.\n"""\n\nfrom referencing.jsonschema import EMPTY_REGISTRY as _EMPTY_REGISTRY\n\nfrom jsonschema_specifications._core import _schemas\n\n#: A `referencing.jsonschema.SchemaRegistry` containing all of the official\n#: meta-schemas and vocabularies.\nREGISTRY = (_schemas() @ _EMPTY_REGISTRY).crawl()\n__all__ = ["REGISTRY"]\n
.venv\Lib\site-packages\jsonschema_specifications\__init__.py
__init__.py
Python
386
0.95
0
0.222222
awesome-app
98
2024-03-03T23:34:14.502829
MIT
false
5b3bdaa5a2c92d477f3be181fb52b468
{\n "$schema": "https://json-schema.org/draft/2019-09/schema",\n "$id": "https://json-schema.org/draft/2019-09/schema",\n "$vocabulary": {\n "https://json-schema.org/draft/2019-09/vocab/core": true,\n "https://json-schema.org/draft/2019-09/vocab/applicator": true,\n "https://json-schema.org/draft/2019-09/vocab/validation": true,\n "https://json-schema.org/draft/2019-09/vocab/meta-data": true,\n "https://json-schema.org/draft/2019-09/vocab/format": false,\n "https://json-schema.org/draft/2019-09/vocab/content": true\n },\n "$recursiveAnchor": true,\n\n "title": "Core and Validation specifications meta-schema",\n "allOf": [\n {"$ref": "meta/core"},\n {"$ref": "meta/applicator"},\n {"$ref": "meta/validation"},\n {"$ref": "meta/meta-data"},\n {"$ref": "meta/format"},\n {"$ref": "meta/content"}\n ],\n "type": ["object", "boolean"],\n "properties": {\n "definitions": {\n "$comment": "While no longer an official keyword as it is replaced by $defs, this keyword is retained in the meta-schema to prevent incompatible extensions as it remains in common use.",\n "type": "object",\n "additionalProperties": { "$recursiveRef": "#" },\n "default": {}\n },\n "dependencies": {\n "$comment": "\"dependencies\" is no longer a keyword, but schema authors should avoid redefining it to facilitate a smooth transition to \"dependentSchemas\" and \"dependentRequired\"",\n "type": "object",\n "additionalProperties": {\n "anyOf": [\n { "$recursiveRef": "#" },\n { "$ref": "meta/validation#/$defs/stringArray" }\n ]\n }\n }\n }\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft201909\metaschema.json
metaschema.json
JSON
1,785
0.8
0
0
vue-tools
985
2024-07-28T22:58:26.419949
MIT
false
235e1fd47201b751194d9e8e90969ce4
{\n "$schema": "https://json-schema.org/draft/2019-09/schema",\n "$id": "https://json-schema.org/draft/2019-09/meta/applicator",\n "$vocabulary": {\n "https://json-schema.org/draft/2019-09/vocab/applicator": true\n },\n "$recursiveAnchor": true,\n\n "title": "Applicator vocabulary meta-schema",\n "type": ["object", "boolean"],\n "properties": {\n "additionalItems": { "$recursiveRef": "#" },\n "unevaluatedItems": { "$recursiveRef": "#" },\n "items": {\n "anyOf": [\n { "$recursiveRef": "#" },\n { "$ref": "#/$defs/schemaArray" }\n ]\n },\n "contains": { "$recursiveRef": "#" },\n "additionalProperties": { "$recursiveRef": "#" },\n "unevaluatedProperties": { "$recursiveRef": "#" },\n "properties": {\n "type": "object",\n "additionalProperties": { "$recursiveRef": "#" },\n "default": {}\n },\n "patternProperties": {\n "type": "object",\n "additionalProperties": { "$recursiveRef": "#" },\n "propertyNames": { "format": "regex" },\n "default": {}\n },\n "dependentSchemas": {\n "type": "object",\n "additionalProperties": {\n "$recursiveRef": "#"\n }\n },\n "propertyNames": { "$recursiveRef": "#" },\n "if": { "$recursiveRef": "#" },\n "then": { "$recursiveRef": "#" },\n "else": { "$recursiveRef": "#" },\n "allOf": { "$ref": "#/$defs/schemaArray" },\n "anyOf": { "$ref": "#/$defs/schemaArray" },\n "oneOf": { "$ref": "#/$defs/schemaArray" },\n "not": { "$recursiveRef": "#" }\n },\n "$defs": {\n "schemaArray": {\n "type": "array",\n "minItems": 1,\n "items": { "$recursiveRef": "#" }\n }\n }\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft201909\vocabularies\applicator
applicator
Other
1,860
0.8
0.017857
0
node-utils
153
2025-04-12T13:15:27.718069
MIT
false
74ec232bee85da963da939e85ec93bc2
{\n "$schema": "https://json-schema.org/draft/2019-09/schema",\n "$id": "https://json-schema.org/draft/2019-09/meta/content",\n "$vocabulary": {\n "https://json-schema.org/draft/2019-09/vocab/content": true\n },\n "$recursiveAnchor": true,\n\n "title": "Content vocabulary meta-schema",\n\n "type": ["object", "boolean"],\n "properties": {\n "contentMediaType": { "type": "string" },\n "contentEncoding": { "type": "string" },\n "contentSchema": { "$recursiveRef": "#" }\n }\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft201909\vocabularies\content
content
Other
517
0.8
0
0
python-kit
450
2023-12-31T14:55:54.984303
Apache-2.0
false
60426b7e6507c82530f9e07b682a3bb3
{\n "$schema": "https://json-schema.org/draft/2019-09/schema",\n "$id": "https://json-schema.org/draft/2019-09/meta/core",\n "$vocabulary": {\n "https://json-schema.org/draft/2019-09/vocab/core": true\n },\n "$recursiveAnchor": true,\n\n "title": "Core vocabulary meta-schema",\n "type": ["object", "boolean"],\n "properties": {\n "$id": {\n "type": "string",\n "format": "uri-reference",\n "$comment": "Non-empty fragments not allowed.",\n "pattern": "^[^#]*#?$"\n },\n "$schema": {\n "type": "string",\n "format": "uri"\n },\n "$anchor": {\n "type": "string",\n "pattern": "^[A-Za-z][-A-Za-z0-9.:_]*$"\n },\n "$ref": {\n "type": "string",\n "format": "uri-reference"\n },\n "$recursiveRef": {\n "type": "string",\n "format": "uri-reference"\n },\n "$recursiveAnchor": {\n "type": "boolean",\n "default": false\n },\n "$vocabulary": {\n "type": "object",\n "propertyNames": {\n "type": "string",\n "format": "uri"\n },\n "additionalProperties": {\n "type": "boolean"\n }\n },\n "$comment": {\n "type": "string"\n },\n "$defs": {\n "type": "object",\n "additionalProperties": { "$recursiveRef": "#" },\n "default": {}\n }\n }\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft201909\vocabularies\core
core
Other
1,531
0.8
0
0
python-kit
566
2024-08-25T01:32:56.435218
Apache-2.0
false
35650e351720b49a00ed347ef4f4c55c
{\n "$schema": "https://json-schema.org/draft/2019-09/schema",\n "$id": "https://json-schema.org/draft/2019-09/meta/meta-data",\n "$vocabulary": {\n "https://json-schema.org/draft/2019-09/vocab/meta-data": true\n },\n "$recursiveAnchor": true,\n\n "title": "Meta-data vocabulary meta-schema",\n\n "type": ["object", "boolean"],\n "properties": {\n "title": {\n "type": "string"\n },\n "description": {\n "type": "string"\n },\n "default": true,\n "deprecated": {\n "type": "boolean",\n "default": false\n },\n "readOnly": {\n "type": "boolean",\n "default": false\n },\n "writeOnly": {\n "type": "boolean",\n "default": false\n },\n "examples": {\n "type": "array",\n "items": true\n }\n }\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft201909\vocabularies\meta-data
meta-data
Other
892
0.8
0
0
vue-tools
398
2025-03-15T15:58:21.153168
BSD-3-Clause
false
bdc019759545600a29aa9dc8f25ef478
{\n "$schema": "https://json-schema.org/draft/2019-09/schema",\n "$id": "https://json-schema.org/draft/2019-09/meta/validation",\n "$vocabulary": {\n "https://json-schema.org/draft/2019-09/vocab/validation": true\n },\n "$recursiveAnchor": true,\n\n "title": "Validation vocabulary meta-schema",\n "type": ["object", "boolean"],\n "properties": {\n "multipleOf": {\n "type": "number",\n "exclusiveMinimum": 0\n },\n "maximum": {\n "type": "number"\n },\n "exclusiveMaximum": {\n "type": "number"\n },\n "minimum": {\n "type": "number"\n },\n "exclusiveMinimum": {\n "type": "number"\n },\n "maxLength": { "$ref": "#/$defs/nonNegativeInteger" },\n "minLength": { "$ref": "#/$defs/nonNegativeIntegerDefault0" },\n "pattern": {\n "type": "string",\n "format": "regex"\n },\n "maxItems": { "$ref": "#/$defs/nonNegativeInteger" },\n "minItems": { "$ref": "#/$defs/nonNegativeIntegerDefault0" },\n "uniqueItems": {\n "type": "boolean",\n "default": false\n },\n "maxContains": { "$ref": "#/$defs/nonNegativeInteger" },\n "minContains": {\n "$ref": "#/$defs/nonNegativeInteger",\n "default": 1\n },\n "maxProperties": { "$ref": "#/$defs/nonNegativeInteger" },\n "minProperties": { "$ref": "#/$defs/nonNegativeIntegerDefault0" },\n "required": { "$ref": "#/$defs/stringArray" },\n "dependentRequired": {\n "type": "object",\n "additionalProperties": {\n "$ref": "#/$defs/stringArray"\n }\n },\n "const": true,\n "enum": {\n "type": "array",\n "items": true\n },\n "type": {\n "anyOf": [\n { "$ref": "#/$defs/simpleTypes" },\n {\n "type": "array",\n "items": { "$ref": "#/$defs/simpleTypes" },\n "minItems": 1,\n "uniqueItems": true\n }\n ]\n }\n },\n "$defs": {\n "nonNegativeInteger": {\n "type": "integer",\n "minimum": 0\n },\n "nonNegativeIntegerDefault0": {\n "$ref": "#/$defs/nonNegativeInteger",\n "default": 0\n },\n "simpleTypes": {\n "enum": [\n "array",\n "boolean",\n "integer",\n "null",\n "number",\n "object",\n "string"\n ]\n },\n "stringArray": {\n "type": "array",\n "items": { "type": "string" },\n "uniqueItems": true,\n "default": []\n }\n }\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft201909\vocabularies\validation
validation
Other
2,834
0.95
0
0
python-kit
927
2025-04-10T16:47:23.775749
BSD-3-Clause
false
7ed4eb0cec0a88cc0f02055c17f30dbf
{\n "$schema": "https://json-schema.org/draft/2020-12/schema",\n "$id": "https://json-schema.org/draft/2020-12/schema",\n "$vocabulary": {\n "https://json-schema.org/draft/2020-12/vocab/core": true,\n "https://json-schema.org/draft/2020-12/vocab/applicator": true,\n "https://json-schema.org/draft/2020-12/vocab/unevaluated": true,\n "https://json-schema.org/draft/2020-12/vocab/validation": true,\n "https://json-schema.org/draft/2020-12/vocab/meta-data": true,\n "https://json-schema.org/draft/2020-12/vocab/format-annotation": true,\n "https://json-schema.org/draft/2020-12/vocab/content": true\n },\n "$dynamicAnchor": "meta",\n\n "title": "Core and Validation specifications meta-schema",\n "allOf": [\n {"$ref": "meta/core"},\n {"$ref": "meta/applicator"},\n {"$ref": "meta/unevaluated"},\n {"$ref": "meta/validation"},\n {"$ref": "meta/meta-data"},\n {"$ref": "meta/format-annotation"},\n {"$ref": "meta/content"}\n ],\n "type": ["object", "boolean"],\n "$comment": "This meta-schema also defines keywords that have appeared in previous drafts in order to prevent incompatible extensions as they remain in common use.",\n "properties": {\n "definitions": {\n "$comment": "\"definitions\" has been replaced by \"$defs\".",\n "type": "object",\n "additionalProperties": { "$dynamicRef": "#meta" },\n "deprecated": true,\n "default": {}\n },\n "dependencies": {\n "$comment": "\"dependencies\" has been split and replaced by \"dependentSchemas\" and \"dependentRequired\" in order to serve their differing semantics.",\n "type": "object",\n "additionalProperties": {\n "anyOf": [\n { "$dynamicRef": "#meta" },\n { "$ref": "meta/validation#/$defs/stringArray" }\n ]\n },\n "deprecated": true,\n "default": {}\n },\n "$recursiveAnchor": {\n "$comment": "\"$recursiveAnchor\" has been replaced by \"$dynamicAnchor\".",\n "$ref": "meta/core#/$defs/anchorString",\n "deprecated": true\n },\n "$recursiveRef": {\n "$comment": "\"$recursiveRef\" has been replaced by \"$dynamicRef\".",\n "$ref": "meta/core#/$defs/uriReferenceString",\n "deprecated": true\n }\n }\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft202012\metaschema.json
metaschema.json
JSON
2,452
0.8
0
0
react-lib
525
2023-12-20T16:44:30.165267
MIT
false
e32920982620b2b43803dc82d4640b50
{\n "$schema": "https://json-schema.org/draft/2020-12/schema",\n "$id": "https://json-schema.org/draft/2020-12/meta/applicator",\n "$vocabulary": {\n "https://json-schema.org/draft/2020-12/vocab/applicator": true\n },\n "$dynamicAnchor": "meta",\n\n "title": "Applicator vocabulary meta-schema",\n "type": ["object", "boolean"],\n "properties": {\n "prefixItems": { "$ref": "#/$defs/schemaArray" },\n "items": { "$dynamicRef": "#meta" },\n "contains": { "$dynamicRef": "#meta" },\n "additionalProperties": { "$dynamicRef": "#meta" },\n "properties": {\n "type": "object",\n "additionalProperties": { "$dynamicRef": "#meta" },\n "default": {}\n },\n "patternProperties": {\n "type": "object",\n "additionalProperties": { "$dynamicRef": "#meta" },\n "propertyNames": { "format": "regex" },\n "default": {}\n },\n "dependentSchemas": {\n "type": "object",\n "additionalProperties": { "$dynamicRef": "#meta" },\n "default": {}\n },\n "propertyNames": { "$dynamicRef": "#meta" },\n "if": { "$dynamicRef": "#meta" },\n "then": { "$dynamicRef": "#meta" },\n "else": { "$dynamicRef": "#meta" },\n "allOf": { "$ref": "#/$defs/schemaArray" },\n "anyOf": { "$ref": "#/$defs/schemaArray" },\n "oneOf": { "$ref": "#/$defs/schemaArray" },\n "not": { "$dynamicRef": "#meta" }\n },\n "$defs": {\n "schemaArray": {\n "type": "array",\n "minItems": 1,\n "items": { "$dynamicRef": "#meta" }\n }\n }\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft202012\vocabularies\applicator
applicator
Other
1,659
0.8
0.020833
0
python-kit
72
2024-11-29T07:45:26.804327
Apache-2.0
false
c178f101765fde917dae76b60cf9052d
{\n "$schema": "https://json-schema.org/draft/2020-12/schema",\n "$id": "https://json-schema.org/draft/2020-12/meta/content",\n "$vocabulary": {\n "https://json-schema.org/draft/2020-12/vocab/content": true\n },\n "$dynamicAnchor": "meta",\n\n "title": "Content vocabulary meta-schema",\n\n "type": ["object", "boolean"],\n "properties": {\n "contentEncoding": { "type": "string" },\n "contentMediaType": { "type": "string" },\n "contentSchema": { "$dynamicRef": "#meta" }\n }\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft202012\vocabularies\content
content
Other
519
0.8
0
0
vue-tools
965
2024-05-20T23:24:39.847729
BSD-3-Clause
false
124a8d6b03706e9bd50c67dc644dbd5a
{\n "$schema": "https://json-schema.org/draft/2020-12/schema",\n "$id": "https://json-schema.org/draft/2020-12/meta/core",\n "$vocabulary": {\n "https://json-schema.org/draft/2020-12/vocab/core": true\n },\n "$dynamicAnchor": "meta",\n\n "title": "Core vocabulary meta-schema",\n "type": ["object", "boolean"],\n "properties": {\n "$id": {\n "$ref": "#/$defs/uriReferenceString",\n "$comment": "Non-empty fragments not allowed.",\n "pattern": "^[^#]*#?$"\n },\n "$schema": { "$ref": "#/$defs/uriString" },\n "$ref": { "$ref": "#/$defs/uriReferenceString" },\n "$anchor": { "$ref": "#/$defs/anchorString" },\n "$dynamicRef": { "$ref": "#/$defs/uriReferenceString" },\n "$dynamicAnchor": { "$ref": "#/$defs/anchorString" },\n "$vocabulary": {\n "type": "object",\n "propertyNames": { "$ref": "#/$defs/uriString" },\n "additionalProperties": {\n "type": "boolean"\n }\n },\n "$comment": {\n "type": "string"\n },\n "$defs": {\n "type": "object",\n "additionalProperties": { "$dynamicRef": "#meta" }\n }\n },\n "$defs": {\n "anchorString": {\n "type": "string",\n "pattern": "^[A-Za-z_][-A-Za-z0-9._]*$"\n },\n "uriString": {\n "type": "string",\n "format": "uri"\n },\n "uriReferenceString": {\n "type": "string",\n "format": "uri-reference"\n }\n }\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft202012\vocabularies\core
core
Other
1,564
0.8
0
0
react-lib
247
2024-07-12T11:24:11.636006
GPL-3.0
false
e06f59822cd4fd907446aa74491f1390
{\n "$schema": "https://json-schema.org/draft/2019-09/schema",\n "$id": "https://json-schema.org/draft/2019-09/meta/format",\n "$vocabulary": {\n "https://json-schema.org/draft/2019-09/vocab/format": true\n },\n "$recursiveAnchor": true,\n\n "title": "Format vocabulary meta-schema",\n "type": ["object", "boolean"],\n "properties": {\n "format": { "type": "string" }\n }\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft202012\vocabularies\format
format
Other
403
0.8
0
0
node-utils
249
2023-11-17T16:14:13.007113
Apache-2.0
false
609bdba1222b2fd9826e4be32f675da7
{\n "$schema": "https://json-schema.org/draft/2020-12/schema",\n "$id": "https://json-schema.org/draft/2020-12/meta/format-annotation",\n "$vocabulary": {\n "https://json-schema.org/draft/2020-12/vocab/format-annotation": true\n },\n "$dynamicAnchor": "meta",\n\n "title": "Format vocabulary meta-schema for annotation results",\n "type": ["object", "boolean"],\n "properties": {\n "format": { "type": "string" }\n }\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft202012\vocabularies\format-annotation
format-annotation
Other
448
0.8
0.071429
0
awesome-app
37
2024-12-13T14:11:47.931073
GPL-3.0
false
2bf9dc2bfc4b90f71ce59c447d284f12
{\n "$schema": "https://json-schema.org/draft/2020-12/schema",\n "$id": "https://json-schema.org/draft/2020-12/meta/format-assertion",\n "$vocabulary": {\n "https://json-schema.org/draft/2020-12/vocab/format-assertion": true\n },\n "$dynamicAnchor": "meta",\n\n "title": "Format vocabulary meta-schema for assertion results",\n "type": ["object", "boolean"],\n "properties": {\n "format": { "type": "string" }\n }\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft202012\vocabularies\format-assertion
format-assertion
Other
445
0.8
0.071429
0
python-kit
577
2024-04-06T04:58:44.470904
GPL-3.0
false
8779aa21bc11ff9f97d4c69c423164c8
{\n "$schema": "https://json-schema.org/draft/2020-12/schema",\n "$id": "https://json-schema.org/draft/2020-12/meta/meta-data",\n "$vocabulary": {\n "https://json-schema.org/draft/2020-12/vocab/meta-data": true\n },\n "$dynamicAnchor": "meta",\n\n "title": "Meta-data vocabulary meta-schema",\n\n "type": ["object", "boolean"],\n "properties": {\n "title": {\n "type": "string"\n },\n "description": {\n "type": "string"\n },\n "default": true,\n "deprecated": {\n "type": "boolean",\n "default": false\n },\n "readOnly": {\n "type": "boolean",\n "default": false\n },\n "writeOnly": {\n "type": "boolean",\n "default": false\n },\n "examples": {\n "type": "array",\n "items": true\n }\n }\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft202012\vocabularies\meta-data
meta-data
Other
892
0.8
0
0
vue-tools
4
2023-08-09T22:03:06.921483
BSD-3-Clause
false
578b61c618cfa4f5bb534fc14b64940a
{\n "$schema": "https://json-schema.org/draft/2020-12/schema",\n "$id": "https://json-schema.org/draft/2020-12/meta/unevaluated",\n "$vocabulary": {\n "https://json-schema.org/draft/2020-12/vocab/unevaluated": true\n },\n "$dynamicAnchor": "meta",\n\n "title": "Unevaluated applicator vocabulary meta-schema",\n "type": ["object", "boolean"],\n "properties": {\n "unevaluatedItems": { "$dynamicRef": "#meta" },\n "unevaluatedProperties": { "$dynamicRef": "#meta" }\n }\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft202012\vocabularies\unevaluated
unevaluated
Other
506
0.8
0
0
node-utils
770
2025-05-29T15:07:43.953727
MIT
false
09062f1116d02e0e91c5a6d8751feeb2
{\n "$schema": "https://json-schema.org/draft/2020-12/schema",\n "$id": "https://json-schema.org/draft/2020-12/meta/validation",\n "$vocabulary": {\n "https://json-schema.org/draft/2020-12/vocab/validation": true\n },\n "$dynamicAnchor": "meta",\n\n "title": "Validation vocabulary meta-schema",\n "type": ["object", "boolean"],\n "properties": {\n "type": {\n "anyOf": [\n { "$ref": "#/$defs/simpleTypes" },\n {\n "type": "array",\n "items": { "$ref": "#/$defs/simpleTypes" },\n "minItems": 1,\n "uniqueItems": true\n }\n ]\n },\n "const": true,\n "enum": {\n "type": "array",\n "items": true\n },\n "multipleOf": {\n "type": "number",\n "exclusiveMinimum": 0\n },\n "maximum": {\n "type": "number"\n },\n "exclusiveMaximum": {\n "type": "number"\n },\n "minimum": {\n "type": "number"\n },\n "exclusiveMinimum": {\n "type": "number"\n },\n "maxLength": { "$ref": "#/$defs/nonNegativeInteger" },\n "minLength": { "$ref": "#/$defs/nonNegativeIntegerDefault0" },\n "pattern": {\n "type": "string",\n "format": "regex"\n },\n "maxItems": { "$ref": "#/$defs/nonNegativeInteger" },\n "minItems": { "$ref": "#/$defs/nonNegativeIntegerDefault0" },\n "uniqueItems": {\n "type": "boolean",\n "default": false\n },\n "maxContains": { "$ref": "#/$defs/nonNegativeInteger" },\n "minContains": {\n "$ref": "#/$defs/nonNegativeInteger",\n "default": 1\n },\n "maxProperties": { "$ref": "#/$defs/nonNegativeInteger" },\n "minProperties": { "$ref": "#/$defs/nonNegativeIntegerDefault0" },\n "required": { "$ref": "#/$defs/stringArray" },\n "dependentRequired": {\n "type": "object",\n "additionalProperties": {\n "$ref": "#/$defs/stringArray"\n }\n }\n },\n "$defs": {\n "nonNegativeInteger": {\n "type": "integer",\n "minimum": 0\n },\n "nonNegativeIntegerDefault0": {\n "$ref": "#/$defs/nonNegativeInteger",\n "default": 0\n },\n "simpleTypes": {\n "enum": [\n "array",\n "boolean",\n "integer",\n "null",\n "number",\n "object",\n "string"\n ]\n },\n "stringArray": {\n "type": "array",\n "items": { "type": "string" },\n "uniqueItems": true,\n "default": []\n }\n }\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft202012\vocabularies\validation
validation
Other
2,834
0.95
0
0
vue-tools
818
2024-09-01T18:04:56.887249
GPL-3.0
false
b72676c01d38f46795ce99a911c99417
{\n "$schema" : "http://json-schema.org/draft-03/schema#",\n "id" : "http://json-schema.org/draft-03/schema#",\n "type" : "object",\n\n "properties" : {\n "type" : {\n "type" : ["string", "array"],\n "items" : {\n "type" : ["string", {"$ref" : "#"}]\n },\n "uniqueItems" : true,\n "default" : "any"\n },\n\n "properties" : {\n "type" : "object",\n "additionalProperties" : {"$ref" : "#"},\n "default" : {}\n },\n\n "patternProperties" : {\n "type" : "object",\n "additionalProperties" : {"$ref" : "#"},\n "default" : {}\n },\n\n "additionalProperties" : {\n "type" : [{"$ref" : "#"}, "boolean"],\n "default" : {}\n },\n\n "items" : {\n "type" : [{"$ref" : "#"}, "array"],\n "items" : {"$ref" : "#"},\n "default" : {}\n },\n\n "additionalItems" : {\n "type" : [{"$ref" : "#"}, "boolean"],\n "default" : {}\n },\n\n "required" : {\n "type" : "boolean",\n "default" : false\n },\n\n "dependencies" : {\n "type" : "object",\n "additionalProperties" : {\n "type" : ["string", "array", {"$ref" : "#"}],\n "items" : {\n "type" : "string"\n }\n },\n "default" : {}\n },\n\n "minimum" : {\n "type" : "number"\n },\n\n "maximum" : {\n "type" : "number"\n },\n\n "exclusiveMinimum" : {\n "type" : "boolean",\n "default" : false\n },\n\n "exclusiveMaximum" : {\n "type" : "boolean",\n "default" : false\n },\n\n "minItems" : {\n "type" : "integer",\n "minimum" : 0,\n "default" : 0\n },\n\n "maxItems" : {\n "type" : "integer",\n "minimum" : 0\n },\n\n "uniqueItems" : {\n "type" : "boolean",\n "default" : false\n },\n\n "pattern" : {\n "type" : "string",\n "format" : "regex"\n },\n\n "minLength" : {\n "type" : "integer",\n "minimum" : 0,\n "default" : 0\n },\n\n "maxLength" : {\n "type" : "integer"\n },\n\n "enum" : {\n "type" : "array",\n "minItems" : 1,\n "uniqueItems" : true\n },\n\n "default" : {\n "type" : "any"\n },\n\n "title" : {\n "type" : "string"\n },\n\n "description" : {\n "type" : "string"\n },\n\n "format" : {\n "type" : "string"\n },\n\n "divisibleBy" : {\n "type" : "number",\n "minimum" : 0,\n "exclusiveMinimum" : true,\n "default" : 1\n },\n\n "disallow" : {\n "type" : ["string", "array"],\n "items" : {\n "type" : ["string", {"$ref" : "#"}]\n },\n "uniqueItems" : true\n },\n\n "extends" : {\n "type" : [{"$ref" : "#"}, "array"],\n "items" : {"$ref" : "#"},\n "default" : {}\n },\n\n "id" : {\n "type" : "string"\n },\n\n "$ref" : {\n "type" : "string"\n },\n\n "$schema" : {\n "type" : "string",\n "format" : "uri"\n }\n },\n\n "dependencies" : {\n "exclusiveMinimum" : "minimum",\n "exclusiveMaximum" : "maximum"\n },\n\n "default" : {}\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft3\metaschema.json
metaschema.json
JSON
2,600
0.95
0
0
vue-tools
262
2025-04-16T16:43:52.266911
BSD-3-Clause
false
4b0afa89e7c7873a44045691cc22f1f9
{\n "id": "http://json-schema.org/draft-04/schema#",\n "$schema": "http://json-schema.org/draft-04/schema#",\n "description": "Core schema meta-schema",\n "definitions": {\n "schemaArray": {\n "type": "array",\n "minItems": 1,\n "items": { "$ref": "#" }\n },\n "positiveInteger": {\n "type": "integer",\n "minimum": 0\n },\n "positiveIntegerDefault0": {\n "allOf": [ { "$ref": "#/definitions/positiveInteger" }, { "default": 0 } ]\n },\n "simpleTypes": {\n "enum": [ "array", "boolean", "integer", "null", "number", "object", "string" ]\n },\n "stringArray": {\n "type": "array",\n "items": { "type": "string" },\n "minItems": 1,\n "uniqueItems": true\n }\n },\n "type": "object",\n "properties": {\n "id": {\n "type": "string"\n },\n "$schema": {\n "type": "string"\n },\n "title": {\n "type": "string"\n },\n "description": {\n "type": "string"\n },\n "default": {},\n "multipleOf": {\n "type": "number",\n "minimum": 0,\n "exclusiveMinimum": true\n },\n "maximum": {\n "type": "number"\n },\n "exclusiveMaximum": {\n "type": "boolean",\n "default": false\n },\n "minimum": {\n "type": "number"\n },\n "exclusiveMinimum": {\n "type": "boolean",\n "default": false\n },\n "maxLength": { "$ref": "#/definitions/positiveInteger" },\n "minLength": { "$ref": "#/definitions/positiveIntegerDefault0" },\n "pattern": {\n "type": "string",\n "format": "regex"\n },\n "additionalItems": {\n "anyOf": [\n { "type": "boolean" },\n { "$ref": "#" }\n ],\n "default": {}\n },\n "items": {\n "anyOf": [\n { "$ref": "#" },\n { "$ref": "#/definitions/schemaArray" }\n ],\n "default": {}\n },\n "maxItems": { "$ref": "#/definitions/positiveInteger" },\n "minItems": { "$ref": "#/definitions/positiveIntegerDefault0" },\n "uniqueItems": {\n "type": "boolean",\n "default": false\n },\n "maxProperties": { "$ref": "#/definitions/positiveInteger" },\n "minProperties": { "$ref": "#/definitions/positiveIntegerDefault0" },\n "required": { "$ref": "#/definitions/stringArray" },\n "additionalProperties": {\n "anyOf": [\n { "type": "boolean" },\n { "$ref": "#" }\n ],\n "default": {}\n },\n "definitions": {\n "type": "object",\n "additionalProperties": { "$ref": "#" },\n "default": {}\n },\n "properties": {\n "type": "object",\n "additionalProperties": { "$ref": "#" },\n "default": {}\n },\n "patternProperties": {\n "type": "object",\n "additionalProperties": { "$ref": "#" },\n "default": {}\n },\n "dependencies": {\n "type": "object",\n "additionalProperties": {\n "anyOf": [\n { "$ref": "#" },\n { "$ref": "#/definitions/stringArray" }\n ]\n }\n },\n "enum": {\n "type": "array",\n "minItems": 1,\n "uniqueItems": true\n },\n "type": {\n "anyOf": [\n { "$ref": "#/definitions/simpleTypes" },\n {\n "type": "array",\n "items": { "$ref": "#/definitions/simpleTypes" },\n "minItems": 1,\n "uniqueItems": true\n }\n ]\n },\n "format": { "type": "string" },\n "allOf": { "$ref": "#/definitions/schemaArray" },\n "anyOf": { "$ref": "#/definitions/schemaArray" },\n "oneOf": { "$ref": "#/definitions/schemaArray" },\n "not": { "$ref": "#" }\n },\n "dependencies": {\n "exclusiveMaximum": [ "maximum" ],\n "exclusiveMinimum": [ "minimum" ]\n },\n "default": {}\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft4\metaschema.json
metaschema.json
JSON
4,357
0.95
0
0
vue-tools
785
2024-12-15T07:53:26.762067
BSD-3-Clause
false
c6be0c4792c7455a526f0e0cc9eb7d25
{\n "$schema": "http://json-schema.org/draft-06/schema#",\n "$id": "http://json-schema.org/draft-06/schema#",\n "title": "Core schema meta-schema",\n "definitions": {\n "schemaArray": {\n "type": "array",\n "minItems": 1,\n "items": { "$ref": "#" }\n },\n "nonNegativeInteger": {\n "type": "integer",\n "minimum": 0\n },\n "nonNegativeIntegerDefault0": {\n "allOf": [\n { "$ref": "#/definitions/nonNegativeInteger" },\n { "default": 0 }\n ]\n },\n "simpleTypes": {\n "enum": [\n "array",\n "boolean",\n "integer",\n "null",\n "number",\n "object",\n "string"\n ]\n },\n "stringArray": {\n "type": "array",\n "items": { "type": "string" },\n "uniqueItems": true,\n "default": []\n }\n },\n "type": ["object", "boolean"],\n "properties": {\n "$id": {\n "type": "string",\n "format": "uri-reference"\n },\n "$schema": {\n "type": "string",\n "format": "uri"\n },\n "$ref": {\n "type": "string",\n "format": "uri-reference"\n },\n "title": {\n "type": "string"\n },\n "description": {\n "type": "string"\n },\n "default": {},\n "examples": {\n "type": "array",\n "items": {}\n },\n "multipleOf": {\n "type": "number",\n "exclusiveMinimum": 0\n },\n "maximum": {\n "type": "number"\n },\n "exclusiveMaximum": {\n "type": "number"\n },\n "minimum": {\n "type": "number"\n },\n "exclusiveMinimum": {\n "type": "number"\n },\n "maxLength": { "$ref": "#/definitions/nonNegativeInteger" },\n "minLength": { "$ref": "#/definitions/nonNegativeIntegerDefault0" },\n "pattern": {\n "type": "string",\n "format": "regex"\n },\n "additionalItems": { "$ref": "#" },\n "items": {\n "anyOf": [\n { "$ref": "#" },\n { "$ref": "#/definitions/schemaArray" }\n ],\n "default": {}\n },\n "maxItems": { "$ref": "#/definitions/nonNegativeInteger" },\n "minItems": { "$ref": "#/definitions/nonNegativeIntegerDefault0" },\n "uniqueItems": {\n "type": "boolean",\n "default": false\n },\n "contains": { "$ref": "#" },\n "maxProperties": { "$ref": "#/definitions/nonNegativeInteger" },\n "minProperties": { "$ref": "#/definitions/nonNegativeIntegerDefault0" },\n "required": { "$ref": "#/definitions/stringArray" },\n "additionalProperties": { "$ref": "#" },\n "definitions": {\n "type": "object",\n "additionalProperties": { "$ref": "#" },\n "default": {}\n },\n "properties": {\n "type": "object",\n "additionalProperties": { "$ref": "#" },\n "default": {}\n },\n "patternProperties": {\n "type": "object",\n "additionalProperties": { "$ref": "#" },\n "propertyNames": { "format": "regex" },\n "default": {}\n },\n "dependencies": {\n "type": "object",\n "additionalProperties": {\n "anyOf": [\n { "$ref": "#" },\n { "$ref": "#/definitions/stringArray" }\n ]\n }\n },\n "propertyNames": { "$ref": "#" },\n "const": {},\n "enum": {\n "type": "array"\n },\n "type": {\n "anyOf": [\n { "$ref": "#/definitions/simpleTypes" },\n {\n "type": "array",\n "items": { "$ref": "#/definitions/simpleTypes" },\n "minItems": 1,\n "uniqueItems": true\n }\n ]\n },\n "format": { "type": "string" },\n "allOf": { "$ref": "#/definitions/schemaArray" },\n "anyOf": { "$ref": "#/definitions/schemaArray" },\n "oneOf": { "$ref": "#/definitions/schemaArray" },\n "not": { "$ref": "#" }\n },\n "default": {}\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft6\metaschema.json
metaschema.json
JSON
4,437
0.95
0
0
react-lib
389
2023-07-24T16:30:09.387745
MIT
false
f46ac1267d2110f8f9e22b419be0b421
{\n "$schema": "http://json-schema.org/draft-07/schema#",\n "$id": "http://json-schema.org/draft-07/schema#",\n "title": "Core schema meta-schema",\n "definitions": {\n "schemaArray": {\n "type": "array",\n "minItems": 1,\n "items": { "$ref": "#" }\n },\n "nonNegativeInteger": {\n "type": "integer",\n "minimum": 0\n },\n "nonNegativeIntegerDefault0": {\n "allOf": [\n { "$ref": "#/definitions/nonNegativeInteger" },\n { "default": 0 }\n ]\n },\n "simpleTypes": {\n "enum": [\n "array",\n "boolean",\n "integer",\n "null",\n "number",\n "object",\n "string"\n ]\n },\n "stringArray": {\n "type": "array",\n "items": { "type": "string" },\n "uniqueItems": true,\n "default": []\n }\n },\n "type": ["object", "boolean"],\n "properties": {\n "$id": {\n "type": "string",\n "format": "uri-reference"\n },\n "$schema": {\n "type": "string",\n "format": "uri"\n },\n "$ref": {\n "type": "string",\n "format": "uri-reference"\n },\n "$comment": {\n "type": "string"\n },\n "title": {\n "type": "string"\n },\n "description": {\n "type": "string"\n },\n "default": true,\n "readOnly": {\n "type": "boolean",\n "default": false\n },\n "examples": {\n "type": "array",\n "items": true\n },\n "multipleOf": {\n "type": "number",\n "exclusiveMinimum": 0\n },\n "maximum": {\n "type": "number"\n },\n "exclusiveMaximum": {\n "type": "number"\n },\n "minimum": {\n "type": "number"\n },\n "exclusiveMinimum": {\n "type": "number"\n },\n "maxLength": { "$ref": "#/definitions/nonNegativeInteger" },\n "minLength": { "$ref": "#/definitions/nonNegativeIntegerDefault0" },\n "pattern": {\n "type": "string",\n "format": "regex"\n },\n "additionalItems": { "$ref": "#" },\n "items": {\n "anyOf": [\n { "$ref": "#" },\n { "$ref": "#/definitions/schemaArray" }\n ],\n "default": true\n },\n "maxItems": { "$ref": "#/definitions/nonNegativeInteger" },\n "minItems": { "$ref": "#/definitions/nonNegativeIntegerDefault0" },\n "uniqueItems": {\n "type": "boolean",\n "default": false\n },\n "contains": { "$ref": "#" },\n "maxProperties": { "$ref": "#/definitions/nonNegativeInteger" },\n "minProperties": { "$ref": "#/definitions/nonNegativeIntegerDefault0" },\n "required": { "$ref": "#/definitions/stringArray" },\n "additionalProperties": { "$ref": "#" },\n "definitions": {\n "type": "object",\n "additionalProperties": { "$ref": "#" },\n "default": {}\n },\n "properties": {\n "type": "object",\n "additionalProperties": { "$ref": "#" },\n "default": {}\n },\n "patternProperties": {\n "type": "object",\n "additionalProperties": { "$ref": "#" },\n "propertyNames": { "format": "regex" },\n "default": {}\n },\n "dependencies": {\n "type": "object",\n "additionalProperties": {\n "anyOf": [\n { "$ref": "#" },\n { "$ref": "#/definitions/stringArray" }\n ]\n }\n },\n "propertyNames": { "$ref": "#" },\n "const": true,\n "enum": {\n "type": "array",\n "items": true\n },\n "type": {\n "anyOf": [\n { "$ref": "#/definitions/simpleTypes" },\n {\n "type": "array",\n "items": { "$ref": "#/definitions/simpleTypes" },\n "minItems": 1,\n "uniqueItems": true\n }\n ]\n },\n "format": { "type": "string" },\n "contentMediaType": { "type": "string" },\n "contentEncoding": { "type": "string" },\n "if": {"$ref": "#"},\n "then": {"$ref": "#"},\n "else": {"$ref": "#"},\n "allOf": { "$ref": "#/definitions/schemaArray" },\n "anyOf": { "$ref": "#/definitions/schemaArray" },\n "oneOf": { "$ref": "#/definitions/schemaArray" },\n "not": { "$ref": "#" }\n },\n "default": true\n}\n
.venv\Lib\site-packages\jsonschema_specifications\schemas\draft7\metaschema.json
metaschema.json
JSON
4,819
0.95
0.006024
0
node-utils
653
2025-07-01T22:32:10.030652
BSD-3-Clause
false
bacf2806af4fea75ccd6abe8c8444722
\n\n
.venv\Lib\site-packages\jsonschema_specifications\tests\__pycache__\test_jsonschema_specifications.cpython-313.pyc
test_jsonschema_specifications.cpython-313.pyc
Other
1,952
0.8
0.043478
0
react-lib
631
2023-07-22T11:55:30.221171
Apache-2.0
true
d904c3ea14f13bcc55fbf1256a3194a5
\n\n
.venv\Lib\site-packages\jsonschema_specifications\tests\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
206
0.7
0
0
react-lib
48
2023-08-31T05:35:09.491794
MIT
true
5ec69562ad885d413addcd0936a050aa
\n\n
.venv\Lib\site-packages\jsonschema_specifications\__pycache__\_core.cpython-313.pyc
_core.cpython-313.pyc
Other
1,506
0.95
0
0
node-utils
60
2023-09-20T19:15:39.890612
Apache-2.0
false
e70446cad7cbb8ff3417fd3c4e4348c0
\n\n
.venv\Lib\site-packages\jsonschema_specifications\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
555
0.7
0
0
react-lib
448
2023-10-24T18:04:20.236372
MIT
false
199ece987ed935d28cb5634617b7c370
pip\n
.venv\Lib\site-packages\jsonschema_specifications-2025.4.1.dist-info\INSTALLER
INSTALLER
Other
4
0.5
0
0
react-lib
659
2024-01-02T22:02:28.023872
BSD-3-Clause
false
365c9bfeb7d89244f2ce01c1de44cb85
Metadata-Version: 2.4\nName: jsonschema-specifications\nVersion: 2025.4.1\nSummary: The JSON Schema meta-schemas and vocabularies, exposed as a Registry\nProject-URL: Documentation, https://jsonschema-specifications.readthedocs.io/\nProject-URL: Homepage, https://github.com/python-jsonschema/jsonschema-specifications\nProject-URL: Issues, https://github.com/python-jsonschema/jsonschema-specifications/issues/\nProject-URL: Funding, https://github.com/sponsors/Julian\nProject-URL: Tidelift, https://tidelift.com/subscription/pkg/pypi-jsonschema-specifications?utm_source=pypi-jsonschema-specifications&utm_medium=referral&utm_campaign=pypi-link\nProject-URL: Source, https://github.com/python-jsonschema/jsonschema-specifications\nAuthor-email: Julian Berman <Julian+jsonschema-specifications@GrayVines.com>\nLicense-Expression: MIT\nLicense-File: COPYING\nKeywords: data validation,json,json schema,jsonschema,validation\nClassifier: Development Status :: 5 - Production/Stable\nClassifier: Intended Audience :: Developers\nClassifier: Operating System :: OS Independent\nClassifier: Programming Language :: Python\nClassifier: Programming Language :: Python :: 3.9\nClassifier: Programming Language :: Python :: 3.10\nClassifier: Programming Language :: Python :: 3.11\nClassifier: Programming Language :: Python :: 3.12\nClassifier: Programming Language :: Python :: 3.13\nClassifier: Programming Language :: Python :: Implementation :: CPython\nClassifier: Programming Language :: Python :: Implementation :: PyPy\nClassifier: Topic :: File Formats :: JSON\nClassifier: Topic :: File Formats :: JSON :: JSON Schema\nRequires-Python: >=3.9\nRequires-Dist: referencing>=0.31.0\nDescription-Content-Type: text/x-rst\n\n=============================\n``jsonschema-specifications``\n=============================\n\n|PyPI| |Pythons| |CI| |ReadTheDocs|\n\nJSON support files from the `JSON Schema Specifications <https://json-schema.org/specification.html>`_ (metaschemas, vocabularies, etc.), packaged for runtime access from Python as a `referencing-based Schema Registry <https://referencing.readthedocs.io/en/stable/api/#referencing.Registry>`_.\n\n.. |PyPI| image:: https://img.shields.io/pypi/v/jsonschema-specifications.svg\n :alt: PyPI version\n :target: https://pypi.org/project/jsonschema-specifications/\n\n.. |Pythons| image:: https://img.shields.io/pypi/pyversions/jsonschema-specifications.svg\n :alt: Supported Python versions\n :target: https://pypi.org/project/jsonschema-specifications/\n\n.. |CI| image:: https://github.com/python-jsonschema/jsonschema-specifications/workflows/CI/badge.svg\n :alt: Build status\n :target: https://github.com/python-jsonschema/jsonschema-specifications/actions?query=workflow%3ACI\n\n.. |ReadTheDocs| image:: https://readthedocs.org/projects/jsonschema-specifications/badge/?version=stable&style=flat\n :alt: ReadTheDocs status\n :target: https://jsonschema-specifications.readthedocs.io/en/stable/\n
.venv\Lib\site-packages\jsonschema_specifications-2025.4.1.dist-info\METADATA
METADATA
Other
2,907
0.8
0.018519
0
vue-tools
728
2025-04-15T19:30:58.474924
MIT
false
ab6600b634f0a579f1e5e374cd01ea0b
jsonschema_specifications-2025.4.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4\njsonschema_specifications-2025.4.1.dist-info/METADATA,sha256=O5aSPJh5x5sRBhPXC-mW3OVQ7F8cSiVjwv7ZPOSOKcA,2907\njsonschema_specifications-2025.4.1.dist-info/RECORD,,\njsonschema_specifications-2025.4.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87\njsonschema_specifications-2025.4.1.dist-info/licenses/COPYING,sha256=QtzWNJX4e063x3V6-jebtVpT-Ur9el9lfZrfVyNuUVw,1057\njsonschema_specifications/__init__.py,sha256=qoTB2DKY7qvNrGhMPH6gtmAJRLilmVQ-fFZwT6ryqw0,386\njsonschema_specifications/__pycache__/__init__.cpython-313.pyc,,\njsonschema_specifications/__pycache__/_core.cpython-313.pyc,,\njsonschema_specifications/_core.py,sha256=tFhc1CMleJ3AJOK_bjxOpFQTdrsUClFGfFxPBU_CebM,1140\njsonschema_specifications/schemas/draft201909/metaschema.json,sha256=e3YbPhIfCgyh6ioLjizIVrz4AWBLgmjXG6yqICvAwTs,1785\njsonschema_specifications/schemas/draft201909/vocabularies/applicator,sha256=aJUQDplyb7sQcFhRK77D7P1LJOj9L6zuPlBe5ysNTDE,1860\njsonschema_specifications/schemas/draft201909/vocabularies/content,sha256=m31PVaTi_bAsQwBo_f-rxzKt3OI42j8d8mkCScM1MnQ,517\njsonschema_specifications/schemas/draft201909/vocabularies/core,sha256=taLElX9kldClCB8ECevooU5BOayyA_x0hHH47eKvWyw,1531\njsonschema_specifications/schemas/draft201909/vocabularies/meta-data,sha256=1H4kRd1qgicaKY2DzGxsuNSuHhXg3Fa-zTehY-zwEoY,892\njsonschema_specifications/schemas/draft201909/vocabularies/validation,sha256=HlJsHTNac0gF_ILPV5jBK5YK19olF8Zs2lobCTWcPBw,2834\njsonschema_specifications/schemas/draft202012/metaschema.json,sha256=Qdp29a-3zgYtJI92JGOpL3ykfk4PkFsiS6av7vkd7Q8,2452\njsonschema_specifications/schemas/draft202012/vocabularies/applicator,sha256=xKbkFHuR_vf-ptwFjLG_k0AvdBS3ZXiosWqvHa1qrO8,1659\njsonschema_specifications/schemas/draft202012/vocabularies/content,sha256=CDQ3R3ZOSlgUJieTz01lIFenkThjxZUNQyl-jh_axbY,519\njsonschema_specifications/schemas/draft202012/vocabularies/core,sha256=wtEqjk3RHTNt_IOj9mOqTGnwtJs76wlP_rJbUxb0gD0,1564\njsonschema_specifications/schemas/draft202012/vocabularies/format,sha256=UOu_55BhGoSbjMQAoJwdDg-2q1wNQ6DyIgH9NiUFa_Q,403\njsonschema_specifications/schemas/draft202012/vocabularies/format-annotation,sha256=q8d1rf79idIjWBcNm_k_Tr0jSVY7u-3WDwK-98gSvMA,448\njsonschema_specifications/schemas/draft202012/vocabularies/format-assertion,sha256=xSJCuaG7eGsmw-gset1CjDH5yW5XXc6Z5W6l_qptogw,445\njsonschema_specifications/schemas/draft202012/vocabularies/meta-data,sha256=j3bW4U9Bubku-TO3CM3FFEyLUmhlGtEZGEhfsXVPHHY,892\njsonschema_specifications/schemas/draft202012/vocabularies/unevaluated,sha256=Lb-8tzmUtnCwl2SSre4f_7RsIWgnhNL1pMpWH54tDLQ,506\njsonschema_specifications/schemas/draft202012/vocabularies/validation,sha256=cBCjHlQfMtK-ch4t40jfdcmzaHaj7TBId_wKvaHTelg,2834\njsonschema_specifications/schemas/draft3/metaschema.json,sha256=LPdfZENvtb43Si6qJ6uLfh_WUcm0ba6mxnsC_WTiRYs,2600\njsonschema_specifications/schemas/draft4/metaschema.json,sha256=4UidC0dV8CeTMCWR0_y48Htok6gqlPJIlfjk7fEbguI,4357\njsonschema_specifications/schemas/draft6/metaschema.json,sha256=wp386fVINcOgbAOzxdXsDtp3cGVo-cTffPvHVmpRAG0,4437\njsonschema_specifications/schemas/draft7/metaschema.json,sha256=PVOSCIJhYGxVm2A_OFMpyfGrRbXWZ-uZBodFOwVdQF4,4819\njsonschema_specifications/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0\njsonschema_specifications/tests/__pycache__/__init__.cpython-313.pyc,,\njsonschema_specifications/tests/__pycache__/test_jsonschema_specifications.cpython-313.pyc,,\njsonschema_specifications/tests/test_jsonschema_specifications.py,sha256=WkbYRW6A6FoZ0rivShfqVLSCsAiHJ2x8TxqECJTXPTY,1106\n
.venv\Lib\site-packages\jsonschema_specifications-2025.4.1.dist-info\RECORD
RECORD
Other
3,656
0.7
0
0
node-utils
238
2024-02-29T23:47:06.569295
MIT
false
dbfcff51710600e37eca34f7a40d6a68
Wheel-Version: 1.0\nGenerator: hatchling 1.27.0\nRoot-Is-Purelib: true\nTag: py3-none-any\n
.venv\Lib\site-packages\jsonschema_specifications-2025.4.1.dist-info\WHEEL
WHEEL
Other
87
0.5
0
0
node-utils
938
2025-03-15T13:01:31.559549
Apache-2.0
false
e2fcb0ad9ea59332c808928b4b439e7a
Copyright (c) 2022 Julian Berman\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the "Software"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n
.venv\Lib\site-packages\jsonschema_specifications-2025.4.1.dist-info\licenses\COPYING
COPYING
Other
1,057
0.7
0
0
node-utils
342
2023-11-08T16:21:01.595485
Apache-2.0
false
93eb9740964b59e9ba30281255b044e2
pip\n
.venv\Lib\site-packages\jupyter-1.1.1.dist-info\INSTALLER
INSTALLER
Other
4
0.5
0
0
python-kit
430
2025-01-04T21:36:12.376876
BSD-3-Clause
false
365c9bfeb7d89244f2ce01c1de44cb85
BSD 3-Clause License\n\nCopyright (c) 2017, Project Jupyter Contributors\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.venv\Lib\site-packages\jupyter-1.1.1.dist-info\LICENSE
LICENSE
Other
1,527
0.7
0
0.130435
python-kit
490
2024-06-27T01:49:30.328642
GPL-3.0
false
975d30491bde5b96de31dc2f90e49d15
Metadata-Version: 2.1\nName: jupyter\nVersion: 1.1.1\nSummary: Jupyter metapackage. Install all the Jupyter components in one go.\nHome-page: https://jupyter.org\nAuthor: Jupyter Development Team\nAuthor-email: jupyter@googlegroups.org\nLicense: BSD\nClassifier: Intended Audience :: Developers\nClassifier: Intended Audience :: System Administrators\nClassifier: Intended Audience :: Science/Research\nClassifier: License :: OSI Approved :: BSD License\nClassifier: Programming Language :: Python\nClassifier: Programming Language :: Python :: 3\nClassifier: Programming Language :: Python :: 3.6\nClassifier: Programming Language :: Python :: 3.7\nClassifier: Programming Language :: Python :: 3.8\nClassifier: Programming Language :: Python :: 3.9\nDescription-Content-Type: text/markdown\nLicense-File: LICENSE\nRequires-Dist: notebook\nRequires-Dist: jupyter-console\nRequires-Dist: nbconvert\nRequires-Dist: ipykernel\nRequires-Dist: ipywidgets\nRequires-Dist: jupyterlab\n\n# Jupyter metapackage\n\nFind more information on [the Jupyter homepage](https://jupyter.org).\n\n## A default installation of most common Jupyter packages\n\n`pip install jupyter` installs the Jupyter Notebook, JupyterLab, and the IPython Kernel.\n\nThis is an empty metapackage for user convenience,\nonly expressing dependencies on multiple Jupyter packages.\n`jupyter` should not be used as a dependency for any packages.\n\nFor more efficient installation of what you need,\nall Jupyter components installed by `pip install jupyter` can be installed separately.\nFor example:\n\n- `notebook` - Jupyter Notebook\n- `jupyterlab` - JupyterLab (added to metapackage v1.1)\n- `ipython` - IPython (terminal)\n- `ipykernel` - IPython Kernel for Jupyter\n- `jupyter-console` - terminal Jupyter client\n- `nbconvert` - convert notebooks between formats\n- `ipywidgets` - interactive widgets package for IPython\n\nNo longer included in `pip install jupyter`, but still supported:\n\n- `qtconsole` - Qt Console (removed in metapackage v1.1)\n
.venv\Lib\site-packages\jupyter-1.1.1.dist-info\METADATA
METADATA
Other
1,964
0.8
0.074074
0.044444
vue-tools
106
2025-04-06T13:48:19.519778
Apache-2.0
false
660d5a27c890de447b1095613eeaa7b7
jupyter-1.1.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4\njupyter-1.1.1.dist-info/LICENSE,sha256=G585Vdz5wjWxDBaMygm4jB8q35kqDcExIEgtkwN2Aqw,1527\njupyter-1.1.1.dist-info/METADATA,sha256=XtQTyw4lmoiUiiG-jF1ZiIVhbOpKpqyHV8RYs5Tw8ek,1964\njupyter-1.1.1.dist-info/RECORD,,\njupyter-1.1.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0\njupyter-1.1.1.dist-info/WHEEL,sha256=WDDPHYzpiOIm6GP1C2_8y8W6q16ICddAgOHlhTje9Qc,109\njupyter-1.1.1.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1\n
.venv\Lib\site-packages\jupyter-1.1.1.dist-info\RECORD
RECORD
Other
567
0.7
0
0
react-lib
5
2024-10-04T09:33:27.212783
GPL-3.0
false
9ad01a55b81988933d828c2b7937b355
Wheel-Version: 1.0\nGenerator: setuptools (74.0.0)\nRoot-Is-Purelib: true\nTag: py2-none-any\nTag: py3-none-any\n\n
.venv\Lib\site-packages\jupyter-1.1.1.dist-info\WHEEL
WHEEL
Other
109
0.7
0
0
vue-tools
794
2023-12-04T09:14:36.493549
BSD-3-Clause
false
d9621354198566cabdf4e9f81e8a76c1
/*\n * Copyright (c) Jupyter Development Team.\n * Distributed under the terms of the Modified BSD License.\n */\n\nconst playwright = require('playwright');\nconst path = require('path');\nconst fs = require('fs');\n\n// eslint-disable-next-line no-redeclare\nconst URL = process.argv[2];\nconst BROWSER_VAR = 'JLAB_BROWSER_TYPE';\nconst BROWSER = process.env[BROWSER_VAR] || 'chromium';\nconst HEADLESS_VAR = 'JLAB_BROWSER_HEADLESS';\nconst HEADLESS = process.env[HEADLESS_VAR] === 'false' ? false : true;\nconst OUTPUT_VAR = 'JLAB_BROWSER_CHECK_OUTPUT';\nconst OUTPUT = process.env[OUTPUT_VAR];\n\nlet nextScreenshot = 0;\nconst screenshotStem = `screenshot-${+new Date()}`;\n\nif (OUTPUT) {\n console.log(`Screenshots will be saved in ${OUTPUT}...`);\n if (!fs.existsSync(OUTPUT)) {\n console.log(`Creating ${OUTPUT}...`);\n fs.mkdirSync(OUTPUT, { recursive: true });\n }\n}\n\nasync function main() {\n /* eslint-disable no-console */\n console.info(`Starting headless ${BROWSER}...`);\n let testError = null;\n\n const pwBrowser = playwright[BROWSER];\n const browser = await pwBrowser.launch({\n headless: HEADLESS,\n logger: {\n isEnabled: () => !!OUTPUT,\n log: (name, severity, message, args) => console.log(name, message)\n }\n });\n\n const context = await browser.newContext();\n const page = await context.newPage();\n\n async function screenshot() {\n if (!OUTPUT) {\n return;\n }\n const screenshotPath = path.join(\n OUTPUT,\n `${screenshotStem}-${++nextScreenshot}.png`\n );\n console.log(`Capturing screenshot ${screenshotPath}...`);\n await page.screenshot({\n type: 'png',\n path: screenshotPath\n });\n }\n\n console.info('Navigating to page:', URL);\n await page.goto(URL);\n console.info('Waiting for page to load...');\n\n // Wait for the local file to redirect on notebook >= 6.0\n await page.waitForNavigation();\n\n console.log('Waiting for page content..');\n\n try {\n await page.locator('#jupyter-config-data').waitFor({ state: 'attached' });\n } catch (reason) {\n console.error('Error loading JupyterLab page:', reason);\n // Limit to 1000 characters\n console.error((await page.content()).substring(0, 1000));\n testError = reason;\n }\n\n console.log('Waiting for #main selector...');\n await page.waitForSelector('#main', { timeout: 100000 });\n\n console.log('Waiting for #browserTest selector...');\n const el = await page.waitForSelector('#browserTest', {\n timeout: 100000,\n state: 'attached'\n });\n console.log('Waiting for application to start...');\n\n try {\n await page.waitForSelector('.completed', { state: 'attached' });\n } catch (e) {\n testError = e;\n }\n\n await screenshot();\n\n const textContent = await el.getProperty('textContent');\n const errors = JSON.parse(await textContent.jsonValue());\n\n for (let error of errors) {\n console.error(`Parsed an error from text content: ${error.message}`, error);\n testError = true;\n }\n\n await browser.close();\n\n if (testError) {\n throw testError;\n }\n console.info('Browser test complete');\n}\n\n// Stop the process if an error is raised in the async function.\nprocess.on('unhandledRejection', up => {\n throw up;\n});\n\nvoid main();\n
.venv\Lib\site-packages\jupyterlab\browser-test.js
browser-test.js
JavaScript
3,176
0.95
0.159664
0.092784
vue-tools
59
2024-08-04T06:19:36.188771
MIT
true
ca3a6e8b453c02c3b65c8089c4774bb3
"""A mixin for adding a debug log file."""\n\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\n\nimport contextlib\nimport logging\nimport os\nimport sys\nimport tempfile\nimport traceback\nimport warnings\n\nfrom traitlets import Unicode\nfrom traitlets.config import Configurable\n\n\nclass DebugLogFileMixin(Configurable):\n debug_log_path = Unicode("", config=True, help="Path to use for the debug log file")\n\n @contextlib.contextmanager\n def debug_logging(self):\n log_path = self.debug_log_path\n if os.path.isdir(log_path):\n log_path = os.path.join(log_path, "jupyterlab-debug.log")\n if not log_path:\n handle, log_path = tempfile.mkstemp(prefix="jupyterlab-debug-", suffix=".log")\n os.close(handle)\n log = self.log\n\n # Transfer current log level to the handlers:\n for h in log.handlers:\n h.setLevel(self.log_level)\n log.setLevel("DEBUG")\n\n # Create our debug-level file handler:\n _debug_handler = logging.FileHandler(log_path, "w", "utf8", delay=True)\n _log_formatter = self._log_formatter_cls(fmt=self.log_format, datefmt=self.log_datefmt)\n _debug_handler.setFormatter(_log_formatter)\n _debug_handler.setLevel("DEBUG")\n\n log.addHandler(_debug_handler)\n\n try:\n yield\n except Exception as ex:\n _, _, exc_traceback = sys.exc_info()\n msg = traceback.format_exception(ex.__class__, ex, exc_traceback)\n for line in msg:\n self.log.debug(line)\n if isinstance(ex, SystemExit):\n warnings.warn(f"An error occurred. See the log file for details: {log_path!s}")\n raise\n warnings.warn("An error occurred.")\n warnings.warn(msg[-1].strip())\n warnings.warn(f"See the log file for details: {log_path!s}")\n self.exit(1)\n else:\n log.removeHandler(_debug_handler)\n _debug_handler.flush()\n _debug_handler.close()\n try:\n os.remove(log_path)\n except FileNotFoundError:\n pass\n log.removeHandler(_debug_handler)\n
.venv\Lib\site-packages\jupyterlab\debuglog.py
debuglog.py
Python
2,229
0.95
0.19697
0.071429
awesome-app
272
2024-12-09T14:14:15.809583
Apache-2.0
false
37f870f143077adfff34949d523d8eaf
"""Jupyter LabExtension Entry Points."""\n\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\n\nimport os\nimport sys\nfrom copy import copy\n\nfrom jupyter_core.application import JupyterApp, base_aliases, base_flags\nfrom traitlets import Bool, Instance, List, Unicode, default\n\nfrom jupyterlab.coreconfig import CoreConfig\nfrom jupyterlab.debuglog import DebugLogFileMixin\n\nfrom .commands import (\n HERE,\n AppOptions,\n build,\n check_extension,\n disable_extension,\n enable_extension,\n get_app_version,\n install_extension,\n link_package,\n list_extensions,\n lock_extension,\n uninstall_extension,\n unlink_package,\n unlock_extension,\n update_extension,\n)\nfrom .federated_labextensions import build_labextension, develop_labextension_py, watch_labextension\nfrom .labapp import LabApp\n\nflags = dict(base_flags)\nflags["no-build"] = (\n {"BaseExtensionApp": {"should_build": False}},\n "Defer building the app after the action.",\n)\nflags["dev-build"] = (\n {"BaseExtensionApp": {"dev_build": True}},\n "Build in development mode.",\n)\nflags["no-minimize"] = (\n {"BaseExtensionApp": {"minimize": False}},\n "Do not minimize a production build.",\n)\nflags["clean"] = (\n {"BaseExtensionApp": {"should_clean": True}},\n "Cleanup intermediate files after the action.",\n)\nflags["splice-source"] = (\n {"BaseExtensionApp": {"splice_source": True}},\n "Splice source packages into app directory.",\n)\n\ncheck_flags = copy(flags)\ncheck_flags["installed"] = (\n {"CheckLabExtensionsApp": {"should_check_installed_only": True}},\n "Check only if the extension is installed.",\n)\n\ndevelop_flags = copy(flags)\ndevelop_flags["overwrite"] = (\n {"DevelopLabExtensionApp": {"overwrite": True}},\n "Overwrite files",\n)\n\nupdate_flags = copy(flags)\nupdate_flags["all"] = (\n {"UpdateLabExtensionApp": {"all": True}},\n "Update all extensions",\n)\n\nuninstall_flags = copy(flags)\nuninstall_flags["all"] = (\n {"UninstallLabExtensionApp": {"all": True}},\n "Uninstall all extensions",\n)\n\nlist_flags = copy(flags)\nlist_flags["verbose"] = (\n {"ListLabExtensionsApp": {"verbose": True}},\n "Increase verbosity level",\n)\n\naliases = dict(base_aliases)\naliases["app-dir"] = "BaseExtensionApp.app_dir"\naliases["dev-build"] = "BaseExtensionApp.dev_build"\naliases["minimize"] = "BaseExtensionApp.minimize"\naliases["debug-log-path"] = "DebugLogFileMixin.debug_log_path"\n\ninstall_aliases = copy(aliases)\ninstall_aliases["pin-version-as"] = "InstallLabExtensionApp.pin"\n\nenable_aliases = copy(aliases)\nenable_aliases["level"] = "EnableLabExtensionsApp.level"\n\ndisable_aliases = copy(aliases)\ndisable_aliases["level"] = "DisableLabExtensionsApp.level"\n\nlock_aliases = copy(aliases)\nlock_aliases["level"] = "LockLabExtensionsApp.level"\n\nunlock_aliases = copy(aliases)\nunlock_aliases["level"] = "UnlockLabExtensionsApp.level"\n\nVERSION = get_app_version()\n\nLABEXTENSION_COMMAND_WARNING = "Users should manage prebuilt extensions with package managers like pip and conda, and extension authors are encouraged to distribute their extensions as prebuilt packages"\n\n\nclass BaseExtensionApp(JupyterApp, DebugLogFileMixin):\n version = VERSION\n flags = flags\n aliases = aliases\n name = "lab"\n\n # Not configurable!\n core_config = Instance(CoreConfig, allow_none=True)\n\n app_dir = Unicode("", config=True, help="The app directory to target")\n\n should_build = Bool(True, config=True, help="Whether to build the app after the action")\n\n dev_build = Bool(\n None,\n allow_none=True,\n config=True,\n help="Whether to build in dev mode. Defaults to True (dev mode) if there are any locally linked extensions, else defaults to False (production mode).",\n )\n\n minimize = Bool(\n True,\n config=True,\n help="Whether to minimize a production build (defaults to True).",\n )\n\n should_clean = Bool(\n False,\n config=True,\n help="Whether temporary files should be cleaned up after building jupyterlab",\n )\n\n splice_source = Bool(False, config=True, help="Splice source packages into app directory.")\n\n labextensions_path = List(\n Unicode(),\n help="The standard paths to look in for prebuilt JupyterLab extensions",\n )\n\n @default("labextensions_path")\n def _default_labextensions_path(self):\n lab = LabApp()\n lab.load_config_file()\n return lab.extra_labextensions_path + lab.labextensions_path\n\n @default("splice_source")\n def _default_splice_source(self):\n version = get_app_version(AppOptions(app_dir=self.app_dir))\n return version.endswith("-spliced")\n\n def start(self):\n if self.app_dir and self.app_dir.startswith(HERE):\n msg = "Cannot run lab extension commands in core app"\n raise ValueError(msg)\n with self.debug_logging():\n ans = self.run_task()\n if ans and self.should_build:\n production = None if self.dev_build is None else not self.dev_build\n app_options = AppOptions(\n app_dir=self.app_dir,\n logger=self.log,\n core_config=self.core_config,\n splice_source=self.splice_source,\n )\n build(\n clean_staging=self.should_clean,\n production=production,\n minimize=self.minimize,\n app_options=app_options,\n )\n\n def run_task(self):\n pass\n\n def deprecation_warning(self, msg):\n return self.log.warning(\n f"\033[33m(Deprecated) {msg}\n\n{LABEXTENSION_COMMAND_WARNING} \033[0m"\n )\n\n def _log_format_default(self):\n """A default format for messages"""\n return "%(message)s"\n\n\nclass InstallLabExtensionApp(BaseExtensionApp):\n description = """Install labextension(s)\n\n Usage\n\n jupyter labextension install [--pin-version-as <alias,...>] <package...>\n\n This installs JupyterLab extensions similar to yarn add or npm install.\n\n Pass a list of comma separate names to the --pin-version-as flag\n to use as aliases for the packages providers. This is useful to\n install multiple versions of the same extension.\n These can be uninstalled with the alias you provided\n to the flag, similar to the "alias" feature of yarn add.\n """\n aliases = install_aliases\n\n pin = Unicode("", config=True, help="Pin this version with a certain alias")\n\n def run_task(self):\n self.deprecation_warning(\n "Installing extensions with the jupyter labextension install command is now deprecated and will be removed in a future major version of JupyterLab."\n )\n pinned_versions = self.pin.split(",")\n self.extra_args = self.extra_args or [os.getcwd()]\n return any(\n install_extension(\n arg,\n # Pass in pinned alias if we have it\n pin=pinned_versions[i] if i < len(pinned_versions) else None,\n app_options=AppOptions(\n app_dir=self.app_dir,\n logger=self.log,\n core_config=self.core_config,\n labextensions_path=self.labextensions_path,\n ),\n )\n for i, arg in enumerate(self.extra_args)\n )\n\n\nclass DevelopLabExtensionApp(BaseExtensionApp):\n description = "(developer) Develop labextension"\n flags = develop_flags\n\n user = Bool(False, config=True, help="Whether to do a user install")\n sys_prefix = Bool(True, config=True, help="Use the sys.prefix as the prefix")\n overwrite = Bool(False, config=True, help="Whether to overwrite files")\n symlink = Bool(True, config=False, help="Whether to use a symlink")\n\n labextensions_dir = Unicode(\n "",\n config=True,\n help="Full path to labextensions dir (probably use prefix or user)",\n )\n\n def run_task(self):\n """Add config for this labextension"""\n self.extra_args = self.extra_args or [os.getcwd()]\n for arg in self.extra_args:\n develop_labextension_py(\n arg,\n user=self.user,\n sys_prefix=self.sys_prefix,\n labextensions_dir=self.labextensions_dir,\n logger=self.log,\n overwrite=self.overwrite,\n symlink=self.symlink,\n )\n\n\nclass BuildLabExtensionApp(BaseExtensionApp):\n description = "(developer) Build labextension"\n\n static_url = Unicode("", config=True, help="Sets the url for static assets when building")\n\n development = Bool(False, config=True, help="Build in development mode")\n\n source_map = Bool(False, config=True, help="Generate source maps")\n\n core_path = Unicode(\n os.path.join(HERE, "staging"),\n config=True,\n help="Directory containing core application package.json file",\n )\n\n aliases = {\n "static-url": "BuildLabExtensionApp.static_url",\n "development": "BuildLabExtensionApp.development",\n "source-map": "BuildLabExtensionApp.source_map",\n "core-path": "BuildLabExtensionApp.core_path",\n }\n\n def run_task(self):\n self.extra_args = self.extra_args or [os.getcwd()]\n build_labextension(\n self.extra_args[0],\n logger=self.log,\n development=self.development,\n static_url=self.static_url or None,\n source_map=self.source_map,\n core_path=self.core_path or None,\n )\n\n\nclass WatchLabExtensionApp(BaseExtensionApp):\n description = "(developer) Watch labextension"\n\n development = Bool(True, config=True, help="Build in development mode")\n\n source_map = Bool(False, config=True, help="Generate source maps")\n\n core_path = Unicode(\n os.path.join(HERE, "staging"),\n config=True,\n help="Directory containing core application package.json file",\n )\n\n aliases = {\n "core-path": "WatchLabExtensionApp.core_path",\n "development": "WatchLabExtensionApp.development",\n "source-map": "WatchLabExtensionApp.source_map",\n }\n\n def run_task(self):\n self.extra_args = self.extra_args or [os.getcwd()]\n labextensions_path = self.labextensions_path\n watch_labextension(\n self.extra_args[0],\n labextensions_path,\n logger=self.log,\n development=self.development,\n source_map=self.source_map,\n core_path=self.core_path or None,\n )\n\n\nclass UpdateLabExtensionApp(BaseExtensionApp):\n description = "Update labextension(s)"\n flags = update_flags\n\n all = Bool(False, config=True, help="Whether to update all extensions")\n\n def run_task(self):\n self.deprecation_warning(\n "Updating extensions with the jupyter labextension update command is now deprecated and will be removed in a future major version of JupyterLab."\n )\n if not self.all and not self.extra_args:\n self.log.warning(\n "Specify an extension to update, or use --all to update all extensions"\n )\n return False\n app_options = AppOptions(\n app_dir=self.app_dir,\n logger=self.log,\n core_config=self.core_config,\n labextensions_path=self.labextensions_path,\n )\n if self.all:\n return update_extension(all_=True, app_options=app_options)\n return any(update_extension(name=arg, app_options=app_options) for arg in self.extra_args)\n\n\nclass LinkLabExtensionApp(BaseExtensionApp):\n description = """\n Link local npm packages that are not lab extensions.\n\n Links a package to the JupyterLab build process. A linked\n package is manually re-installed from its source location when\n `jupyter lab build` is run.\n """\n should_build = Bool(True, config=True, help="Whether to build the app after the action")\n\n def run_task(self):\n self.extra_args = self.extra_args or [os.getcwd()]\n options = AppOptions(\n app_dir=self.app_dir,\n logger=self.log,\n labextensions_path=self.labextensions_path,\n core_config=self.core_config,\n )\n return any(link_package(arg, app_options=options) for arg in self.extra_args)\n\n\nclass UnlinkLabExtensionApp(BaseExtensionApp):\n description = "Unlink packages by name or path"\n\n def run_task(self):\n self.extra_args = self.extra_args or [os.getcwd()]\n options = AppOptions(\n app_dir=self.app_dir,\n logger=self.log,\n labextensions_path=self.labextensions_path,\n core_config=self.core_config,\n )\n return any(unlink_package(arg, app_options=options) for arg in self.extra_args)\n\n\nclass UninstallLabExtensionApp(BaseExtensionApp):\n description = "Uninstall labextension(s) by name"\n flags = uninstall_flags\n\n all = Bool(False, config=True, help="Whether to uninstall all extensions")\n\n def run_task(self):\n self.deprecation_warning(\n "Uninstalling extensions with the jupyter labextension uninstall command is now deprecated and will be removed in a future major version of JupyterLab."\n )\n self.extra_args = self.extra_args or [os.getcwd()]\n\n options = AppOptions(\n app_dir=self.app_dir,\n logger=self.log,\n labextensions_path=self.labextensions_path,\n core_config=self.core_config,\n )\n return any(\n uninstall_extension(arg, all_=self.all, app_options=options) for arg in self.extra_args\n )\n\n\nclass ListLabExtensionsApp(BaseExtensionApp):\n description = "List the installed labextensions"\n verbose = Bool(False, help="Increase verbosity level.").tag(config=True)\n flags = list_flags\n\n def run_task(self):\n list_extensions(\n app_options=AppOptions(\n app_dir=self.app_dir,\n logger=self.log,\n core_config=self.core_config,\n labextensions_path=self.labextensions_path,\n verbose=self.verbose,\n )\n )\n\n\nclass EnableLabExtensionsApp(BaseExtensionApp):\n description = "Enable labextension(s) by name"\n aliases = enable_aliases\n\n level = Unicode("sys_prefix", help="Level at which to enable: sys_prefix, user, system").tag(\n config=True\n )\n\n def run_task(self):\n app_options = AppOptions(\n app_dir=self.app_dir,\n logger=self.log,\n core_config=self.core_config,\n labextensions_path=self.labextensions_path,\n )\n [\n enable_extension(arg, app_options=app_options, level=self.level)\n for arg in self.extra_args\n ]\n\n\nclass DisableLabExtensionsApp(BaseExtensionApp):\n description = "Disable labextension(s) by name"\n aliases = disable_aliases\n\n level = Unicode("sys_prefix", help="Level at which to disable: sys_prefix, user, system").tag(\n config=True\n )\n\n def run_task(self):\n app_options = AppOptions(\n app_dir=self.app_dir,\n logger=self.log,\n core_config=self.core_config,\n labextensions_path=self.labextensions_path,\n )\n [\n disable_extension(arg, app_options=app_options, level=self.level)\n for arg in self.extra_args\n ]\n self.log.info(\n "Starting with JupyterLab 4.1 individual plugins can be re-enabled"\n " in the user interface. While all plugins which were previously"\n " disabled have been locked, you need to explicitly lock any newly"\n " disabled plugins by using `jupyter labextension lock` command."\n )\n\n\nclass LockLabExtensionsApp(BaseExtensionApp):\n description = "Lock labextension(s) by name"\n aliases = lock_aliases\n\n level = Unicode("sys_prefix", help="Level at which to lock: sys_prefix, user, system").tag(\n config=True\n )\n\n def run_task(self):\n app_options = AppOptions(\n app_dir=self.app_dir,\n logger=self.log,\n core_config=self.core_config,\n labextensions_path=self.labextensions_path,\n )\n [lock_extension(arg, app_options=app_options, level=self.level) for arg in self.extra_args]\n\n\nclass UnlockLabExtensionsApp(BaseExtensionApp):\n description = "Unlock labextension(s) by name"\n aliases = unlock_aliases\n\n level = Unicode("sys_prefix", help="Level at which to unlock: sys_prefix, user, system").tag(\n config=True\n )\n\n def run_task(self):\n app_options = AppOptions(\n app_dir=self.app_dir,\n logger=self.log,\n core_config=self.core_config,\n labextensions_path=self.labextensions_path,\n )\n [\n unlock_extension(arg, app_options=app_options, level=self.level)\n for arg in self.extra_args\n ]\n\n\nclass CheckLabExtensionsApp(BaseExtensionApp):\n description = "Check labextension(s) by name"\n flags = check_flags\n\n should_check_installed_only = Bool(\n False,\n config=True,\n help="Whether it should check only if the extensions is installed",\n )\n\n def run_task(self):\n app_options = AppOptions(\n app_dir=self.app_dir,\n logger=self.log,\n core_config=self.core_config,\n labextensions_path=self.labextensions_path,\n )\n all_enabled = all(\n check_extension(\n arg, installed=self.should_check_installed_only, app_options=app_options\n )\n for arg in self.extra_args\n )\n if not all_enabled:\n self.exit(1)\n\n\n_EXAMPLES = """\njupyter labextension list # list all configured labextensions\njupyter labextension install <extension name> # install a labextension\njupyter labextension uninstall <extension name> # uninstall a labextension\njupyter labextension develop # (developer) develop a prebuilt labextension\njupyter labextension build # (developer) build a prebuilt labextension\njupyter labextension watch # (developer) watch a prebuilt labextension\n"""\n\n\nclass LabExtensionApp(JupyterApp):\n """Base jupyter labextension command entry point"""\n\n name = "jupyter labextension"\n version = VERSION\n description = "Work with JupyterLab extensions"\n examples = _EXAMPLES\n\n subcommands = {\n "install": (InstallLabExtensionApp, "Install labextension(s)"),\n "update": (UpdateLabExtensionApp, "Update labextension(s)"),\n "uninstall": (UninstallLabExtensionApp, "Uninstall labextension(s)"),\n "list": (ListLabExtensionsApp, "List labextensions"),\n "link": (LinkLabExtensionApp, "Link labextension(s)"),\n "unlink": (UnlinkLabExtensionApp, "Unlink labextension(s)"),\n "enable": (EnableLabExtensionsApp, "Enable labextension(s)"),\n "disable": (DisableLabExtensionsApp, "Disable labextension(s)"),\n "lock": (LockLabExtensionsApp, "Lock labextension(s)"),\n "unlock": (UnlockLabExtensionsApp, "Unlock labextension(s)"),\n "check": (CheckLabExtensionsApp, "Check labextension(s)"),\n "develop": (DevelopLabExtensionApp, "(developer) Develop labextension(s)"),\n "build": (BuildLabExtensionApp, "(developer) Build labextension"),\n "watch": (WatchLabExtensionApp, "(developer) Watch labextension"),\n }\n\n def start(self):\n """Perform the App's functions as configured"""\n super().start()\n\n # The above should have called a subcommand and raised NoStart; if we\n # get here, it didn't, so we should self.log.info a message.\n subcmds = ", ".join(sorted(self.subcommands))\n self.exit(f"Please supply at least one subcommand: {subcmds}")\n\n\nmain = LabExtensionApp.launch_instance\n\nif __name__ == "__main__":\n sys.exit(main())\n
.venv\Lib\site-packages\jupyterlab\labextensions.py
labextensions.py
Python
20,039
0.95
0.110368
0.012371
react-lib
495
2024-09-23T21:21:54.898962
BSD-3-Clause
false
f613e0e58c697747a504cc44b87a20a6
"""A JupyterHub EntryPoint that defaults to use JupyterLab"""\n\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\n\nimport os\n\nfrom jupyter_server.serverapp import ServerApp\nfrom traitlets import default\n\nfrom .labapp import LabApp\n\nif not os.environ.get("JUPYTERHUB_SINGLEUSER_APP"):\n # setting this env prior to import of jupyterhub.singleuser avoids unnecessary import of notebook\n os.environ["JUPYTERHUB_SINGLEUSER_APP"] = "jupyter_server.serverapp.ServerApp"\n\ntry:\n from jupyterhub.singleuser.mixins import make_singleuser_app\nexcept ImportError:\n # backward-compat with jupyterhub < 1.3\n from jupyterhub.singleuser import SingleUserNotebookApp as SingleUserServerApp\nelse:\n SingleUserServerApp = make_singleuser_app(ServerApp)\n\n\nclass SingleUserLabApp(SingleUserServerApp):\n @default("default_url")\n def _default_url(self):\n return "/lab"\n\n def find_server_extensions(self):\n """unconditionally enable jupyterlab server extension\n\n never called if using legacy SingleUserNotebookApp\n """\n super().find_server_extensions()\n self.jpserver_extensions[LabApp.get_extension_package()] = True\n\n\ndef main(argv=None):\n return SingleUserLabApp.launch_instance(argv)\n\n\nif __name__ == "__main__":\n main()\n
.venv\Lib\site-packages\jupyterlab\labhubapp.py
labhubapp.py
Python
1,324
0.95
0.177778
0.129032
react-lib
965
2024-10-13T00:45:49.554384
Apache-2.0
false
ac0644dab69c9ea796ceeadfd4304d57
/*\n * Copyright (c) Jupyter Development Team.\n * Distributed under the terms of the Modified BSD License.\n */\n\nconst pkg = require('./staging/package.json');\n\nfunction parser(part) {\n return parseInt(part, 10);\n}\n\nconst engine = pkg.engines.node.replace('>=', '');\nconst eparts = engine.split('.').map(parser);\n\nconst version = process.version.replace('v', '');\nconst vparts = version.split('.').map(parser);\n\n// eslint-disable-next-line\nconsole.log('Node', process.version);\n\nif (vparts[0] > eparts[0]) {\n process.exit(0);\n}\n\nif (vparts[0] < eparts[0]) {\n process.exit(1);\n}\n\nif (vparts[1] > eparts[1]) {\n process.exit(0);\n}\n\nif (vparts[1] < eparts[1]) {\n process.exit(1);\n}\n\nif (vparts[2] < eparts[1]) {\n process.exit(1);\n}\n
.venv\Lib\site-packages\jupyterlab\node-version-check.js
node-version-check.js
JavaScript
732
0.95
0.153846
0.172414
python-kit
87
2024-02-17T09:43:34.051914
BSD-3-Clause
false
2a8f9a10cbdbe73e8473a2c4d9222528
# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\n\nimport urllib.parse\n\nimport pytest\nfrom jupyter_server.utils import url_path_join\nfrom jupyterlab_server import LabConfig\nfrom tornado.escape import url_escape\nfrom traitlets import Unicode\n\nfrom jupyterlab.labapp import LabApp\n\n\ndef mkdir(tmp_path, *parts):\n path = tmp_path.joinpath(*parts)\n if not path.exists():\n path.mkdir(parents=True)\n return path\n\n\napp_settings_dir = pytest.fixture(lambda tmp_path: mkdir(tmp_path, "app_settings"))\nuser_settings_dir = pytest.fixture(lambda tmp_path: mkdir(tmp_path, "user_settings"))\nschemas_dir = pytest.fixture(lambda tmp_path: mkdir(tmp_path, "schemas"))\nworkspaces_dir = pytest.fixture(lambda tmp_path: mkdir(tmp_path, "workspaces"))\n\n\n@pytest.fixture\ndef make_lab_app(\n jp_root_dir, jp_template_dir, app_settings_dir, user_settings_dir, schemas_dir, workspaces_dir\n):\n def _make_lab_app(**kwargs):\n class TestLabApp(LabApp):\n base_url = "/lab"\n extension_url = "/lab"\n default_url = Unicode("/", help="The default URL to redirect to from `/`")\n lab_config = LabConfig(\n app_name="JupyterLab Test App",\n static_dir=str(jp_root_dir),\n templates_dir=str(jp_template_dir),\n app_url="/lab",\n app_settings_dir=str(app_settings_dir),\n user_settings_dir=str(user_settings_dir),\n schemas_dir=str(schemas_dir),\n workspaces_dir=str(workspaces_dir),\n )\n\n app = TestLabApp()\n return app\n\n # Create the index files.\n index = jp_template_dir.joinpath("index.html")\n index.write_text(\n """\n<!DOCTYPE html>\n<html>\n<head>\n <title>{{page_config['appName'] | e}}</title>\n</head>\n<body>\n {# Copy so we do not modify the page_config with updates. #}\n {% set page_config_full = page_config.copy() %}\n\n {# Set a dummy variable - we just want the side effect of the update. #}\n {% set _ = page_config_full.update(baseUrl=base_url, wsUrl=ws_url) %}\n\n <script id="jupyter-config-data" type="application/json">\n {{ page_config_full | tojson }}\n </script>\n <script src="{{page_config['fullStaticUrl'] | e}}/bundle.js" main="index"></script>\n\n <script type="text/javascript">\n /* Remove token from URL. */\n (function () {\n var parsedUrl = new URL(window.location.href);\n if (parsedUrl.searchParams.get('token')) {\n parsedUrl.searchParams.delete('token');\n window.history.replaceState({ }, '', parsedUrl.href);\n }\n })();\n </script>\n</body>\n</html>\n"""\n )\n\n return _make_lab_app\n\n\n@pytest.fixture\ndef labapp(jp_serverapp, make_lab_app):\n app = make_lab_app()\n app._link_jupyter_server_extension(jp_serverapp)\n app.initialize()\n return app\n\n\n@pytest.fixture\ndef fetch_long(http_server_client, jp_auth_header, jp_base_url):\n """fetch fixture that handles auth, base_url, and path"""\n\n def client_fetch(*parts, headers=None, params=None, **kwargs):\n # Handle URL strings\n path_url = url_escape(url_path_join(*parts), plus=False)\n path_url = url_path_join(jp_base_url, path_url)\n params_url = urllib.parse.urlencode(params or {})\n url = path_url + "?" + params_url\n # Add auth keys to header\n headers = headers or {}\n headers.update(jp_auth_header)\n # Make request.\n return http_server_client.fetch(url, headers=headers, request_timeout=250, **kwargs)\n\n return client_fetch\n
.venv\Lib\site-packages\jupyterlab\pytest_plugin.py
pytest_plugin.py
Python
3,590
0.95
0.087719
0.075269
vue-tools
345
2024-01-22T05:53:54.230510
GPL-3.0
true
d57d8925c231ef434c37931118b96084
# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\n\nfrom jupyter_server.utils import url_path_join\nfrom tornado.web import RedirectHandler\n\n\ndef load_jupyter_server_extension(serverapp):\n from .labapp import LabApp\n\n """Temporary server extension shim when using\n old notebook server.\n """\n extension = LabApp()\n extension.serverapp = serverapp\n extension.load_config_file()\n extension.update_config(serverapp.config)\n extension.parse_command_line(serverapp.extra_args)\n extension.handlers.extend(\n [\n (\n r"/static/favicons/favicon.ico",\n RedirectHandler,\n {"url": url_path_join(serverapp.base_url, "static/base/images/favicon.ico")},\n ),\n (\n r"/static/favicons/favicon-busy-1.ico",\n RedirectHandler,\n {"url": url_path_join(serverapp.base_url, "static/base/images/favicon-busy-1.ico")},\n ),\n (\n r"/static/favicons/favicon-busy-2.ico",\n RedirectHandler,\n {"url": url_path_join(serverapp.base_url, "static/base/images/favicon-busy-2.ico")},\n ),\n (\n r"/static/favicons/favicon-busy-3.ico",\n RedirectHandler,\n {"url": url_path_join(serverapp.base_url, "static/base/images/favicon-busy-3.ico")},\n ),\n (\n r"/static/favicons/favicon-file.ico",\n RedirectHandler,\n {"url": url_path_join(serverapp.base_url, "static/base/images/favicon-file.ico")},\n ),\n (\n r"/static/favicons/favicon-notebook.ico",\n RedirectHandler,\n {\n "url": url_path_join(\n serverapp.base_url, "static/base/images/favicon-notebook.ico"\n )\n },\n ),\n (\n r"/static/favicons/favicon-terminal.ico",\n RedirectHandler,\n {\n "url": url_path_join(\n serverapp.base_url, "static/base/images/favicon-terminal.ico"\n )\n },\n ),\n (\n r"/static/logo/logo.png",\n RedirectHandler,\n {"url": url_path_join(serverapp.base_url, "static/base/images/logo.png")},\n ),\n ]\n )\n extension.initialize()\n
.venv\Lib\site-packages\jupyterlab\serverextension.py
serverextension.py
Python
2,517
0.95
0.014085
0.029851
awesome-app
605
2025-03-12T17:53:42.581484
Apache-2.0
false
132c27e80b8cc270ec95b458763bd164
# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\n\nfrom collections import namedtuple\n\nVersionInfo = namedtuple("VersionInfo", ["major", "minor", "micro", "releaselevel", "serial"])\n\n# DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion\nversion_info = VersionInfo(4, 4, 4, "final", 0)\n\n_specifier_ = {"alpha": "a", "beta": "b", "candidate": "rc", "final": ""}\n\n__version__ = "{}.{}.{}{}".format(\n version_info.major,\n version_info.minor,\n version_info.micro,\n (\n ""\n if version_info.releaselevel == "final"\n else _specifier_[version_info.releaselevel] + str(version_info.serial)\n ),\n)\n
.venv\Lib\site-packages\jupyterlab\_version.py
_version.py
Python
677
0.95
0.045455
0.176471
vue-tools
337
2025-06-06T23:17:12.529419
BSD-3-Clause
false
3d8d6cc95e3eb624dd014d18f4120c4f
"""Server extension for JupyterLab."""\n\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\n\nfrom ._version import __version__ # noqa\nfrom .serverextension import load_jupyter_server_extension # noqa\nfrom .handlers.announcements import (\n CheckForUpdate, # noqa\n CheckForUpdateABC, # noqa\n NeverCheckForUpdate, # noqa\n)\n\n\ndef _jupyter_server_extension_paths():\n return [{"module": "jupyterlab"}]\n\n\ndef _jupyter_server_extension_points():\n from .labapp import LabApp\n\n return [{"module": "jupyterlab", "app": LabApp}]\n
.venv\Lib\site-packages\jupyterlab\__init__.py
__init__.py
Python
589
0.95
0.136364
0.133333
react-lib
704
2023-11-13T08:40:43.378329
BSD-3-Clause
false
b55f8c7c2f37cbdd6efe5123fafbd2c1
# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\n\nimport sys\n\nfrom jupyterlab.labapp import main\n\nsys.exit(main())\n
.venv\Lib\site-packages\jupyterlab\__main__.py
__main__.py
Python
167
0.95
0
0.4
python-kit
486
2023-09-21T04:38:29.428853
MIT
false
c23d73d8babadd0a69b36b9b97393f98
"""Extension manager without installation capabilities."""\n\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\n\nimport sys\nfrom typing import Optional\n\nfrom jupyterlab_server.translation_utils import translator\n\nfrom .manager import ActionResult, ExtensionManager, ExtensionManagerMetadata, ExtensionPackage\n\n\nclass ReadOnlyExtensionManager(ExtensionManager):\n """Extension manager without installation capabilities."""\n\n @property\n def metadata(self) -> ExtensionManagerMetadata:\n """Extension manager metadata."""\n return ExtensionManagerMetadata("read-only", install_path=sys.prefix)\n\n async def get_latest_version(self, pkg: str) -> Optional[str]:\n """Return the latest available version for a given extension.\n\n Args:\n pkg: The extension to search for\n Returns:\n The latest available version\n """\n return None\n\n async def list_packages(\n self, query: str, page: int, per_page: int\n ) -> tuple[dict[str, ExtensionPackage], Optional[int]]:\n """List the available extensions.\n\n Args:\n query: The search extension query\n page: The result page\n per_page: The number of results per page\n Returns:\n The available extensions in a mapping {name: metadata}\n The results last page; None if the manager does not support pagination\n """\n return {}, None\n\n async def install(self, extension: str, version: Optional[str] = None) -> ActionResult:\n """Install the required extension.\n\n Note:\n If the user must be notified with a message (like asking to restart the\n server), the result should be\n {"status": "warning", "message": "<explanation for the user>"}\n\n Args:\n extension: The extension name\n version: The version to install; default None (i.e. the latest possible)\n Returns:\n The action result\n """\n trans = translator.load("jupyterlab")\n return ActionResult(\n status="error", message=trans.gettext("Extension installation not supported.")\n )\n\n async def uninstall(self, extension: str) -> ActionResult:\n """Uninstall the required extension.\n\n Note:\n If the user must be notified with a message (like asking to restart the\n server), the result should be\n {"status": "warning", "message": "<explanation for the user>"}\n\n Args:\n extension: The extension name\n Returns:\n The action result\n """\n trans = translator.load("jupyterlab")\n return ActionResult(\n status="error", message=trans.gettext("Extension removal not supported.")\n )\n
.venv\Lib\site-packages\jupyterlab\extensions\readonly.py
readonly.py
Python
2,823
0.95
0.134146
0.030769
awesome-app
628
2023-10-09T09:40:18.612742
BSD-3-Clause
false
d69ddcd9111cf6dac022d728de96fa3b
"""Extension manager for JupyterLab."""\n\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\n\nimport sys\nfrom typing import Optional\n\nfrom traitlets.config import Configurable\n\nfrom .manager import ActionResult, ExtensionManager, ExtensionPackage # noqa: F401\nfrom .pypi import PyPIExtensionManager\nfrom .readonly import ReadOnlyExtensionManager\n\n# See compatibility note on `group` keyword in https://docs.python.org/3/library/importlib.metadata.html#entry-points\nif sys.version_info < (3, 10):\n from importlib_metadata import entry_points\nelse:\n from importlib.metadata import entry_points\n\n# Supported third-party services\nMANAGERS = {}\n\nfor entry in entry_points(group="jupyterlab.extension_manager_v1"):\n MANAGERS[entry.name] = entry\n\n\n# Entry points\n\n\ndef get_readonly_manager(\n app_options: Optional[dict] = None,\n ext_options: Optional[dict] = None,\n parent: Optional[Configurable] = None,\n) -> ExtensionManager:\n """Read-Only Extension Manager factory"""\n return ReadOnlyExtensionManager(app_options, ext_options, parent)\n\n\ndef get_pypi_manager(\n app_options: Optional[dict] = None,\n ext_options: Optional[dict] = None,\n parent: Optional[Configurable] = None,\n) -> ExtensionManager:\n """PyPi Extension Manager factory"""\n return PyPIExtensionManager(app_options, ext_options, parent)\n
.venv\Lib\site-packages\jupyterlab\extensions\__init__.py
__init__.py
Python
1,382
0.95
0.108696
0.151515
python-kit
857
2024-09-24T09:22:36.945674
MIT
false
6a24d71982b297dd341ae6b6f77b833c
\n\n
.venv\Lib\site-packages\jupyterlab\extensions\__pycache__\manager.cpython-313.pyc
manager.cpython-313.pyc
Other
32,900
0.95
0.035354
0
vue-tools
626
2025-05-06T05:39:17.249420
BSD-3-Clause
false
f6710531e2ce98b3566c635a93d4a57c
\n\n
.venv\Lib\site-packages\jupyterlab\extensions\__pycache__\pypi.cpython-313.pyc
pypi.cpython-313.pyc
Other
28,903
0.95
0.021341
0.016447
python-kit
482
2023-12-07T06:18:40.871715
GPL-3.0
false
3a3f5064fc82d49696008ff90761dd13
\n\n
.venv\Lib\site-packages\jupyterlab\extensions\__pycache__\readonly.cpython-313.pyc
readonly.cpython-313.pyc
Other
3,667
0.95
0.068493
0
python-kit
357
2023-12-03T20:22:32.719944
BSD-3-Clause
false
5a2d4462519942d454e1092144b1a935
\n\n
.venv\Lib\site-packages\jupyterlab\extensions\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
1,564
0.95
0.0625
0
python-kit
84
2024-04-08T23:42:13.703327
GPL-3.0
false
bd188b218e34a7a84ff8ceac2370ff29
# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\n\nimport getpass\nimport os\nfrom pathlib import Path\nfrom tempfile import NamedTemporaryFile, mkdtemp\n\n\ndef configure_jupyter_server(c):\n """Helper to configure the Jupyter Server for integration testing\n with Galata.\n\n By default the tests will be executed in the OS temporary folder. You\n can override that folder by setting the environment variable ``JUPYTERLAB_GALATA_ROOT_DIR``.\n\n .. warning::\n\n Never use this configuration in production as it will remove all security protections.\n """\n # Test if we are running in a docker\n if getpass.getuser() == "jovyan":\n c.ServerApp.ip = "0.0.0.0" # noqa S104\n\n c.ServerApp.port = 8888\n c.ServerApp.port_retries = 0\n c.ServerApp.open_browser = False\n # Add test helpers extension shipped with JupyterLab.\n # You can replace the following line by the two following one\n # import jupyterlab\n # c.LabServerApp.extra_labextensions_path = str(Path(jupyterlab.__file__).parent / "galata")\n c.LabServerApp.extra_labextensions_path = str(Path(__file__).parent)\n\n c.LabApp.workspaces_dir = mkdtemp(prefix="galata-workspaces-")\n\n with NamedTemporaryFile(mode="w", delete=False) as tmp:\n tmp.write('PS1="$ "\n')\n rcfile_path = tmp.name\n\n c.ServerApp.terminado_settings = {"shell_command": ["/bin/bash", "--rcfile", rcfile_path]}\n c.ServerApp.root_dir = os.environ.get(\n "JUPYTERLAB_GALATA_ROOT_DIR", mkdtemp(prefix="galata-test-")\n )\n c.IdentityProvider.token = ""\n c.ServerApp.password = ""\n c.ServerApp.disable_check_xsrf = True\n c.LabApp.expose_app_in_browser = True\n
.venv\Lib\site-packages\jupyterlab\galata\__init__.py
__init__.py
Python
1,719
0.95
0.085106
0.189189
node-utils
454
2023-08-07T15:18:10.898835
GPL-3.0
false
379a59b8f840413b51de291f6552ab75
/* This is a generated file of CSS imports */\n/* It was generated by @jupyterlab/builder in Build.ensureAssets() */\n\n\n
.venv\Lib\site-packages\jupyterlab\galata\@jupyterlab\galata-extension\static\style.js
style.js
JavaScript
118
0.95
0
1
python-kit
609
2025-02-10T22:48:38.282023
Apache-2.0
false
8259c5c9dd06dde49a5e3abaad871e37
\n\n
.venv\Lib\site-packages\jupyterlab\galata\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
2,331
0.8
0.05
0
python-kit
817
2024-04-23T05:39:45.162980
GPL-3.0
false
cfb9f6bc4f5eb2cdbe3ac8bf06790e9b
"""Tornado handlers for frontend config storage."""\n\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\nimport json\nfrom concurrent.futures import ThreadPoolExecutor\nfrom threading import Event\n\nfrom jupyter_server.base.handlers import APIHandler\nfrom jupyter_server.extension.handler import ExtensionHandlerMixin\nfrom tornado import gen, web\nfrom tornado.concurrent import run_on_executor\n\nfrom jupyterlab.commands import AppOptions, _ensure_options, build, build_check, clean\n\n\nclass Builder:\n building = False\n executor = ThreadPoolExecutor(max_workers=5)\n canceled = False\n _canceling = False\n _kill_event = None\n _future = None\n\n def __init__(self, core_mode, app_options=None):\n app_options = _ensure_options(app_options)\n self.log = app_options.logger\n self.core_mode = core_mode\n self.app_dir = app_options.app_dir\n self.core_config = app_options.core_config\n self.labextensions_path = app_options.labextensions_path\n\n @gen.coroutine\n def get_status(self):\n if self.core_mode:\n raise gen.Return({"status": "stable", "message": ""})\n if self.building:\n raise gen.Return({"status": "building", "message": ""})\n\n try:\n messages = yield self._run_build_check(\n self.app_dir, self.log, self.core_config, self.labextensions_path\n )\n status = "needed" if messages else "stable"\n if messages:\n self.log.warning("Build recommended")\n [self.log.warning(m) for m in messages]\n else:\n self.log.info("Build is up to date")\n except ValueError:\n self.log.warning("Could not determine jupyterlab build status without nodejs")\n status = "stable"\n messages = []\n\n raise gen.Return({"status": status, "message": "\n".join(messages)})\n\n @gen.coroutine\n def build(self):\n if self._canceling:\n msg = "Cancel in progress"\n raise ValueError(msg)\n if not self.building:\n self.canceled = False\n self._future = future = gen.Future()\n self.building = True\n self._kill_event = evt = Event()\n try:\n yield self._run_build(\n self.app_dir, self.log, evt, self.core_config, self.labextensions_path\n )\n future.set_result(True)\n except Exception as e:\n if str(e) == "Aborted":\n future.set_result(False)\n else:\n future.set_exception(e)\n finally:\n self.building = False\n try:\n yield self._future\n except Exception as e:\n raise e\n\n @gen.coroutine\n def cancel(self):\n if not self.building:\n msg = "No current build"\n raise ValueError(msg)\n self._canceling = True\n yield self._future\n self._canceling = False\n self.canceled = True\n\n @run_on_executor\n def _run_build_check(self, app_dir, logger, core_config, labextensions_path):\n return build_check(\n app_options=AppOptions(\n app_dir=app_dir,\n logger=logger,\n core_config=core_config,\n labextensions_path=labextensions_path,\n )\n )\n\n @run_on_executor\n def _run_build(self, app_dir, logger, kill_event, core_config, labextensions_path):\n app_options = AppOptions(\n app_dir=app_dir,\n logger=logger,\n kill_event=kill_event,\n core_config=core_config,\n labextensions_path=labextensions_path,\n )\n try:\n return build(app_options=app_options)\n except Exception:\n if self._kill_event.is_set():\n return\n self.log.warning("Build failed, running a clean and rebuild")\n clean(app_options=app_options)\n return build(app_options=app_options)\n\n\nclass BuildHandler(ExtensionHandlerMixin, APIHandler):\n def initialize(self, builder=None, name=None):\n super().initialize(name=name)\n self.builder = builder\n\n @web.authenticated\n @gen.coroutine\n def get(self):\n data = yield self.builder.get_status()\n self.finish(json.dumps(data))\n\n @web.authenticated\n @gen.coroutine\n def delete(self):\n self.log.warning("Canceling build")\n try:\n yield self.builder.cancel()\n except Exception as e:\n raise web.HTTPError(500, str(e)) from None\n self.set_status(204)\n\n @web.authenticated\n @gen.coroutine\n def post(self):\n self.log.debug("Starting build")\n try:\n yield self.builder.build()\n except Exception as e:\n raise web.HTTPError(500, str(e)) from None\n\n if self.builder.canceled:\n raise web.HTTPError(400, "Build canceled")\n\n self.log.debug("Build succeeded")\n self.set_status(200)\n\n\n# The path for lab build.\nbuild_path = r"/lab/api/build"\n
.venv\Lib\site-packages\jupyterlab\handlers\build_handler.py
build_handler.py
Python
5,157
0.95
0.191358
0.021429
vue-tools
186
2023-08-04T23:48:20.526802
MIT
false
bbc3914e4307c45f47d9e7f906df6d1e
"""An error handler for JupyterLab."""\n\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\n\nfrom jupyter_server.base.handlers import JupyterHandler\nfrom jupyter_server.extension.handler import ExtensionHandlerMixin\nfrom tornado import web\n\nTEMPLATE = """\n<!DOCTYPE HTML>\n<html>\n<head>\n <meta charset="utf-8">\n <title>JupyterLab Error</title>\n</head>\n<body>\n<h1>JupyterLab Error<h1>\n{messages}\n</body>\n"""\n\n\nclass ErrorHandler(ExtensionHandlerMixin, JupyterHandler):\n def initialize(self, messages=None, name=None):\n super().initialize(name=name)\n self.messages = messages\n\n @web.authenticated\n @web.removeslash\n def get(self):\n msgs = [f"<h2>{msg}</h2>" for msg in self.messages]\n self.write(TEMPLATE.format(messages="\n".join(msgs)))\n
.venv\Lib\site-packages\jupyterlab\handlers\error_handler.py
error_handler.py
Python
831
0.95
0.151515
0.074074
react-lib
508
2024-05-14T06:25:34.378041
MIT
false
7ee31c9d08b0c0bf4392abcb13f0d950
"""Tornado handlers for plugin management."""\n\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\n\nimport dataclasses\nimport json\n\nfrom jupyter_server.base.handlers import APIHandler\nfrom tornado import web\n\nfrom jupyterlab.extensions.manager import PluginManager\n\n\nclass PluginHandler(APIHandler):\n def initialize(self, manager: PluginManager):\n super().initialize()\n self.manager = manager\n\n @web.authenticated\n async def get(self):\n """GET query returns info on plugins locks"""\n # note: this is informative only - validation is server-side\n locks = await self.manager.plugin_locks()\n self.set_status(200)\n self.finish(json.dumps(locks))\n\n @web.authenticated\n async def post(self):\n """POST query performs an action on a specific plugin\n\n Body arguments:\n {\n "cmd": Action to perform - ["enable", "disable"]\n "plugin_name": Plugin name\n }\n """\n data = self.get_json_body()\n cmd = data["cmd"]\n name = data["plugin_name"]\n if cmd not in ("enable", "disable") or not name:\n raise web.HTTPError(\n 422,\n f"Could not process instruction {cmd!r} with plugin name {name!r}",\n )\n\n ret_value = None\n try:\n if cmd == "enable":\n ret_value = await self.manager.enable(name)\n elif cmd == "disable":\n ret_value = await self.manager.disable(name)\n except Exception as e:\n raise web.HTTPError(500, str(e)) from e\n\n if ret_value.status == "error":\n self.set_status(500)\n else:\n self.set_status(201)\n self.finish(json.dumps(dataclasses.asdict(ret_value)))\n\n\n# The path for lab plugins handler.\nplugins_handler_path = r"/lab/api/plugins"\n
.venv\Lib\site-packages\jupyterlab\handlers\plugin_manager_handler.py
plugin_manager_handler.py
Python
1,915
0.95
0.15625
0.078431
vue-tools
962
2025-06-03T21:57:25.072310
GPL-3.0
false
aabcd9c9a0fafa955df71120bfe2dd65
# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\n
.venv\Lib\site-packages\jupyterlab\handlers\__init__.py
__init__.py
Python
101
0.8
0
1
awesome-app
736
2025-05-20T16:48:37.278696
BSD-3-Clause
false
0ee034bd9ff242251929b7c26b80c455
\n\n
.venv\Lib\site-packages\jupyterlab\handlers\__pycache__\announcements.cpython-313.pyc
announcements.cpython-313.pyc
Other
12,926
0.95
0.103659
0
awesome-app
699
2024-08-05T22:27:46.058121
BSD-3-Clause
false
06c84a328fe4c5acc04c24d16f2602d3
\n\n
.venv\Lib\site-packages\jupyterlab\handlers\__pycache__\build_handler.cpython-313.pyc
build_handler.cpython-313.pyc
Other
8,448
0.8
0.012821
0
react-lib
914
2023-12-06T07:08:53.319787
BSD-3-Clause
false
5117a396e8f7e22f85eb9259c44e38f3
\n\n
.venv\Lib\site-packages\jupyterlab\handlers\__pycache__\error_handler.cpython-313.pyc
error_handler.cpython-313.pyc
Other
1,681
0.7
0.035714
0
vue-tools
960
2025-05-13T09:45:03.706962
BSD-3-Clause
false
cab80452e3e7d433c3f68d1033e05165
\n\n
.venv\Lib\site-packages\jupyterlab\handlers\__pycache__\extension_manager_handler.cpython-313.pyc
extension_manager_handler.cpython-313.pyc
Other
6,680
0.8
0.043478
0
node-utils
249
2023-09-06T04:56:50.937074
MIT
false
da993d01a839e77053eeae62868028f1
\n\n
.venv\Lib\site-packages\jupyterlab\handlers\__pycache__\plugin_manager_handler.cpython-313.pyc
plugin_manager_handler.cpython-313.pyc
Other
3,211
0.8
0.032258
0
awesome-app
528
2024-08-18T04:52:15.151273
Apache-2.0
false
fc88a1c669ab21bbec013a5025c5350f
\n\n
.venv\Lib\site-packages\jupyterlab\handlers\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
194
0.7
0
0
python-kit
716
2025-04-19T23:44:26.494970
Apache-2.0
false
a3585e0f8ddbd7bcbe610854af84bcac
{\n "title": "Application Commands",\n "description": "Application commands settings.",\n "jupyter.lab.shortcuts": [\n {\n "command": "application:activate-next-tab",\n "keys": ["Ctrl Shift ]"],\n "selector": "body"\n },\n {\n "command": "application:activate-previous-tab",\n "keys": ["Ctrl Shift ["],\n "selector": "body"\n },\n {\n "command": "application:activate-next-tab-bar",\n "keys": ["Ctrl Shift ."],\n "selector": "body"\n },\n {\n "command": "application:activate-previous-tab-bar",\n "keys": ["Ctrl Shift ,"],\n "selector": "body"\n },\n {\n "command": "application:close",\n "keys": ["Alt W"],\n "selector": ".jp-Activity"\n },\n {\n "command": "application:toggle-mode",\n "keys": ["Accel Shift D"],\n "selector": "body"\n },\n {\n "command": "application:toggle-left-area",\n "keys": ["Accel B"],\n "selector": "body"\n },\n {\n "command": "application:toggle-right-area",\n "keys": ["Accel J"],\n "selector": "body"\n },\n {\n "command": "application:toggle-presentation-mode",\n "keys": [""],\n "selector": "body"\n },\n {\n "command": "application:toggle-fullscreen-mode",\n "keys": ["F11"],\n "selector": "body"\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt 1"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "left",\n "index": 0\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt 2"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "left",\n "index": 1\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt 3"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "left",\n "index": 2\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt 4"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "left",\n "index": 3\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt 5"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "left",\n "index": 4\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt 6"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "left",\n "index": 5\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt 7"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "left",\n "index": 6\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt 8"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "left",\n "index": 7\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt 9"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "left",\n "index": 8\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt 0"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "left",\n "index": 9\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt Shift 1"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "right",\n "index": 0\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt Shift 2"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "right",\n "index": 1\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt Shift 3"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "right",\n "index": 2\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt Shift 4"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "right",\n "index": 3\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt Shift 5"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "right",\n "index": 4\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt Shift 6"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "right",\n "index": 5\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt Shift 7"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "right",\n "index": 6\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt Shift 8"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "right",\n "index": 7\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt Shift 9"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "right",\n "index": 8\n }\n },\n {\n "command": "application:toggle-sidebar-widget",\n "keys": ["Alt Shift 0"],\n "macKeys": [""],\n "selector": "body",\n "args": {\n "side": "right",\n "index": 9\n }\n }\n ],\n "jupyter.lab.menus": {\n "main": [\n {\n "id": "jp-mainmenu-file",\n "items": [\n {\n "type": "separator",\n "rank": 3\n },\n {\n "command": "application:close",\n "rank": 3\n },\n {\n "command": "application:close-all",\n "rank": 3.2\n }\n ]\n },\n {\n "id": "jp-mainmenu-view",\n "items": [\n {\n "type": "submenu",\n "rank": 1,\n "submenu": {\n "id": "jp-mainmenu-view-appearance",\n "label": "Appearance",\n "items": [\n {\n "command": "application:toggle-mode",\n "rank": 0\n },\n {\n "command": "application:toggle-presentation-mode",\n "rank": 0\n },\n {\n "command": "application:toggle-fullscreen-mode",\n "rank": 0\n },\n {\n "type": "separator",\n "rank": 10\n },\n {\n "command": "application:toggle-left-area",\n "rank": 11\n },\n {\n "command": "application:toggle-side-tabbar",\n "rank": 12,\n "args": {\n "side": "left"\n }\n },\n {\n "command": "application:toggle-right-area",\n "rank": 13\n },\n {\n "command": "application:toggle-side-tabbar",\n "rank": 14,\n "args": {\n "side": "right"\n }\n },\n {\n "command": "application:toggle-header",\n "rank": 15\n },\n {\n "type": "separator",\n "rank": 50\n },\n {\n "command": "application:reset-layout",\n "rank": 51\n }\n ]\n }\n },\n {\n "type": "separator",\n "rank": 1\n }\n ]\n }\n ],\n "context": [\n {\n "command": "application:close",\n "selector": "#jp-main-dock-panel .lm-DockPanel-tabBar .lm-TabBar-tab",\n "rank": 4\n },\n {\n "command": "application:close-other-tabs",\n "selector": "#jp-main-dock-panel .lm-DockPanel-tabBar .lm-TabBar-tab",\n "rank": 4\n },\n {\n "command": "application:close-all",\n "selector": "#jp-main-dock-panel .lm-DockPanel-tabBar .lm-TabBar-tab",\n "rank": 4\n },\n {\n "command": "application:close-right-tabs",\n "selector": "#jp-main-dock-panel .lm-DockPanel-tabBar .lm-TabBar-tab",\n "rank": 5\n },\n {\n "command": "__internal:context-menu-info",\n "selector": "body",\n "rank": 9007199254740991\n }\n ]\n },\n "properties": {},\n "additionalProperties": false,\n "type": "object"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\application-extension\commands.json
commands.json
JSON
8,726
0.8
0
0
node-utils
290
2024-06-30T16:21:22.382680
BSD-3-Clause
false
2d6681e474fd5c4e66b10b93893156b0
{\n "title": "Application Context Menu",\n "description": "JupyterLab context menu settings.",\n "jupyter.lab.setting-icon-label": "Application Context Menu",\n "jupyter.lab.shortcuts": [],\n "jupyter.lab.transform": true,\n "properties": {\n "contextMenu": {\n "title": "The application context menu.",\n "description": "Note: To disable a context menu item,\ncopy it to User Preferences and add the\n\"disabled\" key. The following example will disable Download item on files:\n{\n \"contextMenu\": [\n {\n \"command\": \"filebrowser:download\",\n \"selector\": \".jp-DirListing-item[data-isdir=\\\"false\\\"]\",\n \"disabled\": true\n }\n ]\n}\n\nContext menu description:",\n "items": {\n "allOf": [\n { "$ref": "#/definitions/menuItem" },\n {\n "properties": {\n "selector": {\n "description": "The CSS selector for the context menu item.",\n "type": "string"\n }\n }\n }\n ]\n },\n "type": "array",\n "default": []\n },\n "disabled": {\n "description": "Whether the application context (right-click) menu is disabled",\n "type": "boolean",\n "default": false\n }\n },\n "additionalProperties": false,\n "definitions": {\n "menu": {\n "properties": {\n "disabled": {\n "description": "Whether the menu is disabled or not",\n "type": "boolean",\n "default": false\n },\n "icon": {\n "description": "Menu icon id",\n "type": "string"\n },\n "id": {\n "description": "Menu unique id",\n "type": "string",\n "pattern": "[a-z][a-z0-9\\-_]+"\n },\n "items": {\n "description": "Menu items",\n "type": "array",\n "items": {\n "$ref": "#/definitions/menuItem"\n }\n },\n "label": {\n "description": "Menu label",\n "type": "string"\n },\n "mnemonic": {\n "description": "Mnemonic index for the label",\n "type": "number",\n "minimum": -1,\n "default": -1\n },\n "rank": {\n "description": "Menu rank",\n "type": "number",\n "minimum": 0\n }\n },\n "required": ["id"],\n "additionalProperties": false,\n "type": "object"\n },\n "menuItem": {\n "properties": {\n "args": {\n "description": "Command arguments",\n "type": "object"\n },\n "command": {\n "description": "Command id",\n "type": "string"\n },\n "disabled": {\n "description": "Whether the item is disabled or not",\n "type": "boolean",\n "default": false\n },\n "type": {\n "description": "Item type",\n "type": "string",\n "enum": ["command", "submenu", "separator"],\n "default": "command"\n },\n "rank": {\n "description": "Item rank",\n "type": "number",\n "minimum": 0\n },\n "submenu": {\n "description": "Submenu definition",\n "oneOf": [\n {\n "$ref": "#/definitions/menu"\n },\n {\n "type": "null"\n }\n ]\n }\n },\n "type": "object"\n }\n },\n "type": "object"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\application-extension\context-menu.json
context-menu.json
JSON
3,379
0.95
0.016667
0
react-lib
813
2025-03-15T19:44:37.191905
Apache-2.0
false
7c04c351c0c12f8556fbd0ca023da421
{\n "name": "@jupyterlab/application-extension",\n "version": "4.4.4",\n "description": "JupyterLab - Application Extension",\n "homepage": "https://github.com/jupyterlab/jupyterlab",\n "bugs": {\n "url": "https://github.com/jupyterlab/jupyterlab/issues"\n },\n "repository": {\n "type": "git",\n "url": "https://github.com/jupyterlab/jupyterlab.git"\n },\n "license": "BSD-3-Clause",\n "author": "Project Jupyter",\n "sideEffects": [\n "style/**/*.css",\n "style/index.js"\n ],\n "main": "lib/index.js",\n "types": "lib/index.d.ts",\n "style": "style/index.css",\n "directories": {\n "lib": "lib/"\n },\n "files": [\n "lib/*.d.ts",\n "lib/*.js.map",\n "lib/*.js",\n "schema/*.json",\n "style/**/*.css",\n "style/index.js",\n "src/**/*.{ts,tsx}"\n ],\n "scripts": {\n "build": "tsc -b",\n "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",\n "watch": "tsc -b --watch"\n },\n "dependencies": {\n "@jupyterlab/application": "^4.4.4",\n "@jupyterlab/apputils": "^4.5.4",\n "@jupyterlab/coreutils": "^6.4.4",\n "@jupyterlab/property-inspector": "^4.4.4",\n "@jupyterlab/settingregistry": "^4.4.4",\n "@jupyterlab/statedb": "^4.4.4",\n "@jupyterlab/statusbar": "^4.4.4",\n "@jupyterlab/translation": "^4.4.4",\n "@jupyterlab/ui-components": "^4.4.4",\n "@lumino/algorithm": "^2.0.3",\n "@lumino/commands": "^2.3.2",\n "@lumino/coreutils": "^2.2.1",\n "@lumino/disposable": "^2.1.4",\n "@lumino/widgets": "^2.7.1",\n "react": "^18.2.0"\n },\n "devDependencies": {\n "rimraf": "~5.0.5",\n "typescript": "~5.5.4"\n },\n "publishConfig": {\n "access": "public"\n },\n "jupyterlab": {\n "extension": true,\n "schemaDir": "schema"\n },\n "styleModule": "style/index.js"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\application-extension\package.json.orig
package.json.orig
Other
1,736
0.8
0
0
python-kit
722
2024-09-11T11:00:08.072802
BSD-3-Clause
false
752e135d2c91cd2069e6e91332d9b3ae
{\n "title": "Property Inspector",\n "description": "Property Inspector Settings.",\n "jupyter.lab.menus": {\n "main": [\n {\n "id": "jp-mainmenu-view",\n "items": [\n {\n "command": "property-inspector:show-panel",\n "rank": 2\n }\n ]\n }\n ]\n },\n "jupyter.lab.shortcuts": [\n {\n "command": "property-inspector:show-panel",\n "keys": ["Accel Shift U"],\n "selector": "body"\n }\n ],\n "properties": {},\n "additionalProperties": false,\n "type": "object"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\application-extension\property-inspector.json
property-inspector.json
JSON
543
0.7
0
0
node-utils
283
2025-01-03T13:23:44.458603
Apache-2.0
false
0518cee107964e7326a02ca8e7327e51
{\n "$schema": "http://json-schema.org/draft-07/schema",\n "title": "JupyterLab Shell",\n "description": "JupyterLab Shell layout settings.",\n "jupyter.lab.menus": {\n "context": [\n {\n "command": "sidebar:switch",\n "selector": ".jp-SideBar .lm-TabBar-tab",\n "rank": 500\n }\n ]\n },\n "properties": {\n "hiddenMode": {\n "type": "string",\n "title": "Hidden mode of main panel widgets",\n "description": "The method for hiding widgets in the main dock panel. Using `scale` will increase performance on Firefox but don't use it with Chrome, Chromium or Edge. Similar performance gains are seen with `contentVisibility` which is only available in Chromium-based browsers.",\n "enum": ["display", "scale", "contentVisibility"],\n "default": "display"\n },\n "startMode": {\n "enum": ["", "single", "multiple"],\n "title": "Start mode: ``, `single` or `multiple`",\n "description": "The mode under which JupyterLab should start. If empty, the mode will be imposed by the URL",\n "default": ""\n },\n "layout": {\n "type": "object",\n "title": "Customize shell widget positioning",\n "description": "Overrides default widget position in the application layout\ne.g. to position terminals in the right sidebar in multiple documents mode and in the down are in single document mode, {\n \"single\": { \"Terminal\": { \"area\": \"down\" } },\n \"multiple\": { \"Terminal\": { \"area\": \"right\" } }\n}.",\n "properties": {\n "single": {\n "$ref": "#/definitions/layout",\n "default": {\n "Linked Console": { "area": "down" },\n "Inspector": { "area": "down" },\n "Cloned Output": { "area": "down" }\n }\n },\n "multiple": { "$ref": "#/definitions/layout", "default": {} }\n },\n "default": {\n "single": {\n "Linked Console": { "area": "down" },\n "Inspector": { "area": "down" },\n "Cloned Output": { "area": "down" }\n },\n "multiple": {}\n },\n "additionalProperties": false\n }\n },\n "additionalProperties": false,\n "type": "object",\n "definitions": {\n "layout": {\n "type": "object",\n "properties": {\n "[\\w-]+": {\n "type": "object",\n "properties": {\n "area": {\n "enum": ["main", "left", "right", "down"]\n },\n "options": {\n "$ref": "#/definitions/options"\n }\n },\n "additionalProperties": false\n }\n }\n },\n "options": {\n "type": "object",\n "properties": {\n "mode": {\n "type": "string",\n "enum": [\n "split-top",\n "split-left",\n "split-right",\n "split-bottom",\n "tab-before",\n "tab-after"\n ]\n },\n "rank": { "type": "number", "minimum": 0 },\n "ref": {\n "type": "string",\n "minLength": 1\n }\n }\n }\n }\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\application-extension\shell.json
shell.json
JSON
3,036
0.8
0.020833
0
python-kit
386
2024-02-16T17:09:52.539600
BSD-3-Clause
false
5011c8dd81512174216139935aef5cf8
{\n "title": "Top Bar",\n "description": "Top Bar settings.",\n "jupyter.lab.toolbars": {\n "TopBar": [\n {\n "name": "spacer",\n "type": "spacer",\n "rank": 50\n }\n ]\n },\n "jupyter.lab.transform": true,\n "properties": {\n "toolbar": {\n "title": "Top bar items",\n "description": "Note: To disable a item,\ncopy it to User Preferences and add the\n\"disabled\" key. The following example will disable the user menu:\n{\n \"toolbar\": [\n {\n \"name\": \"user-menu\",\n \"disabled\": true\n }\n ]\n}\n\nTop bar description:",\n "items": {\n "$ref": "#/definitions/toolbarItem"\n },\n "type": "array",\n "default": []\n }\n },\n "additionalProperties": false,\n "type": "object",\n "definitions": {\n "toolbarItem": {\n "properties": {\n "name": {\n "title": "Unique name",\n "type": "string"\n },\n "args": {\n "title": "Command arguments",\n "type": "object"\n },\n "command": {\n "title": "Command id",\n "type": "string",\n "default": ""\n },\n "disabled": {\n "title": "Whether the item is ignored or not",\n "type": "boolean",\n "default": false\n },\n "icon": {\n "title": "Item icon id",\n "description": "If defined, it will override the command icon",\n "type": "string"\n },\n "label": {\n "title": "Item label",\n "description": "If defined, it will override the command label",\n "type": "string"\n },\n "caption": {\n "title": "Item caption",\n "description": "If defined, it will override the command caption",\n "type": "string"\n },\n "type": {\n "title": "Item type",\n "type": "string",\n "enum": ["command", "spacer"]\n },\n "rank": {\n "title": "Item rank",\n "type": "number",\n "minimum": 0,\n "default": 50\n }\n },\n "required": ["name"],\n "additionalProperties": false,\n "type": "object"\n }\n }\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\application-extension\top-bar.json
top-bar.json
JSON
2,151
0.95
0
0
vue-tools
575
2024-10-19T09:23:33.139147
BSD-3-Clause
false
a44ce207b0e789e0e742d5d5b6039f7c
{\n "title": "Kernels",\n "description": "Kernels and kernel sessions settings",\n "jupyter.lab.setting-icon": "ui-components:kernel",\n "jupyter.lab.setting-icon-label": "Kernel",\n "additionalProperties": false,\n "properties": {\n "showStatusBarItem": {\n "type": "boolean",\n "title": "Show the status bar item",\n "description": "Whether to show the running kernels item in the status bar",\n "default": true\n },\n "commsOverSubshells": {\n "type": "string",\n "title": "Kernel Comms over subshells",\n "description": "Whether comm messages should be sent to kernel subshells, if the kernel supports it.",\n "default": "perCommTarget",\n "oneOf": [\n { "const": "disabled", "title": "Disabled" },\n { "const": "perComm", "title": "One subshell per comm" },\n { "const": "perCommTarget", "title": "One subshell per comm-target" }\n ]\n }\n },\n "type": "object"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\apputils-extension\kernels-settings.json
kernels-settings.json
JSON
935
0.7
0.037037
0
python-kit
982
2023-09-02T19:52:38.198376
GPL-3.0
false
d50387ee346766d3df2baaf5ea98450a
{\n "title": "Notifications",\n "description": "Notifications settings.",\n "jupyter.lab.setting-icon": "ui-components:bell",\n "jupyter.lab.menus": {\n "main": [\n {\n "id": "jp-mainmenu-view",\n "items": [\n {\n "type": "separator",\n "rank": 9.9\n },\n {\n "command": "apputils:display-notifications",\n "rank": 9.92\n },\n {\n "type": "separator",\n "rank": 9.99\n }\n ]\n }\n ]\n },\n "additionalProperties": false,\n "properties": {\n "checkForUpdates": {\n "title": "Check for JupyterLab updates",\n "description": "Whether to check for newer versions of JupyterLab or not. It requires `fetchNews` to be set to Always (`true`) to be active. If `true`, it will make a request to a website.",\n "type": "boolean",\n "default": true\n },\n "doNotDisturbMode": {\n "title": "Silence all notifications",\n "description": "If `true`, no toast notifications will be automatically displayed.",\n "type": "boolean",\n "default": false\n },\n "fetchNews": {\n "title": "Fetch official Jupyter news",\n "description": "Whether to fetch news from the Jupyter news feed. If Always (`true`), it will make a request to a website.",\n "type": "string",\n "oneOf": [\n { "const": "true", "title": "Always" },\n { "const": "false", "title": "Never" },\n { "const": "none", "title": "Ask (None)" }\n ],\n "default": "none"\n }\n },\n "type": "object"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\apputils-extension\notification.json
notification.json
JSON
1,565
0.85
0.037736
0
python-kit
480
2025-03-03T03:33:15.851773
GPL-3.0
false
1df586625da456e4c405b08abf6659e8
{\n "name": "@jupyterlab/apputils-extension",\n "version": "4.4.4",\n "description": "JupyterLab - Application Utilities Extension",\n "homepage": "https://github.com/jupyterlab/jupyterlab",\n "bugs": {\n "url": "https://github.com/jupyterlab/jupyterlab/issues"\n },\n "repository": {\n "type": "git",\n "url": "https://github.com/jupyterlab/jupyterlab.git"\n },\n "license": "BSD-3-Clause",\n "author": "Project Jupyter",\n "sideEffects": [\n "style/**/*"\n ],\n "main": "lib/index.js",\n "types": "lib/index.d.ts",\n "style": "style/index.css",\n "directories": {\n "lib": "lib/"\n },\n "files": [\n "lib/*.d.ts",\n "lib/*.js.map",\n "lib/*.js",\n "style/*.css",\n "style/images/*.svg",\n "schema/*.json",\n "style/index.js",\n "src/**/*.{ts,tsx}"\n ],\n "scripts": {\n "build": "tsc -b",\n "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",\n "watch": "tsc -b --watch"\n },\n "dependencies": {\n "@jupyterlab/application": "^4.4.4",\n "@jupyterlab/apputils": "^4.5.4",\n "@jupyterlab/coreutils": "^6.4.4",\n "@jupyterlab/docregistry": "^4.4.4",\n "@jupyterlab/mainmenu": "^4.4.4",\n "@jupyterlab/rendermime-interfaces": "^3.12.4",\n "@jupyterlab/services": "^7.4.4",\n "@jupyterlab/settingregistry": "^4.4.4",\n "@jupyterlab/statedb": "^4.4.4",\n "@jupyterlab/statusbar": "^4.4.4",\n "@jupyterlab/translation": "^4.4.4",\n "@jupyterlab/ui-components": "^4.4.4",\n "@jupyterlab/workspaces": "^4.4.4",\n "@lumino/algorithm": "^2.0.3",\n "@lumino/commands": "^2.3.2",\n "@lumino/coreutils": "^2.2.1",\n "@lumino/disposable": "^2.1.4",\n "@lumino/domutils": "^2.0.3",\n "@lumino/polling": "^2.1.4",\n "@lumino/widgets": "^2.7.1",\n "react": "^18.2.0",\n "react-dom": "^18.2.0",\n "react-toastify": "^9.0.8"\n },\n "devDependencies": {\n "rimraf": "~5.0.5",\n "typescript": "~5.5.4"\n },\n "publishConfig": {\n "access": "public"\n },\n "jupyterlab": {\n "extension": true,\n "schemaDir": "schema"\n },\n "styleModule": "style/index.js"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\apputils-extension\package.json.orig
package.json.orig
Other
2,028
0.8
0
0
python-kit
975
2024-12-27T16:08:18.056045
BSD-3-Clause
false
1f1ebb6d07cff213f54fba60b10b6494
{\n "title": "Command Palette",\n "description": "Command palette settings.",\n "jupyter.lab.setting-icon": "ui-components:palette",\n "jupyter.lab.setting-icon-label": "Command Palette",\n "jupyter.lab.menus": {\n "main": [\n {\n "id": "jp-mainmenu-view",\n "items": [\n {\n "command": "apputils:activate-command-palette",\n "rank": 0\n },\n {\n "type": "separator",\n "rank": 0\n }\n ]\n }\n ]\n },\n "jupyter.lab.shortcuts": [\n {\n "command": "apputils:activate-command-palette",\n "keys": ["Accel Shift C"],\n "selector": "body"\n }\n ],\n "properties": {\n "modal": {\n "title": "Modal Command Palette",\n "description": "Whether the command palette should be modal or in the left panel.",\n "type": "boolean",\n "default": true\n }\n },\n "type": "object",\n "additionalProperties": false\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\apputils-extension\palette.json
palette.json
JSON
936
0.7
0
0
vue-tools
818
2023-11-18T21:59:52.369321
BSD-3-Clause
false
060dc6690cd7c86830f8991b22bf2a88
{\n "title": "Print",\n "description": "Print settings.",\n "jupyter.lab.menus": {\n "main": [\n {\n "id": "jp-mainmenu-file",\n "items": [\n {\n "type": "separator",\n "rank": 98\n },\n {\n "command": "apputils:print",\n "rank": 98\n }\n ]\n }\n ]\n },\n "jupyter.lab.shortcuts": [\n {\n "command": "apputils:print",\n "keys": ["Accel P"],\n "selector": "body"\n }\n ],\n "additionalProperties": false,\n "properties": {},\n "type": "object"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\apputils-extension\print.json
print.json
JSON
563
0.7
0
0
node-utils
387
2025-03-24T06:27:25.958478
MIT
false
805043aca9462e938915a8ffc8f8f0c7
{\n "title": "HTML Sanitizer",\n "description": "HTML Sanitizer settings.",\n "jupyter.lab.setting-icon": "ui-components:html5",\n "additionalProperties": false,\n "properties": {\n "allowedSchemes": {\n "title": "Allowed URL Scheme",\n "description": "Scheme allowed by the HTML sanitizer.",\n "type": "array",\n "uniqueItems": true,\n "items": {\n "type": "string"\n },\n "default": ["http", "https", "ftp", "mailto", "tel"]\n },\n "autolink": {\n "type": "boolean",\n "title": "Autolink URL replacement",\n "description": "Whether to replace URLs with links or not.",\n "default": true\n },\n "allowNamedProperties": {\n "type": "boolean",\n "title": "Allow named properties",\n "description": "Whether to allow untrusted elements to include `name` and `id` attributes. These attributes are stripped by default to prevent DOM clobbering attacks.",\n "default": false\n }\n },\n "type": "object"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\apputils-extension\sanitizer.json
sanitizer.json
JSON
978
0.7
0
0
awesome-app
927
2023-10-28T11:19:53.422582
BSD-3-Clause
false
33385d21c4a8291b3b792f6aff273eda
{\n "title": "Kernel dialogs",\n "description": "Kernel dialogs settings.",\n "additionalProperties": false,\n "properties": {\n "skipKernelRestartDialog": {\n "title": "Skip kernel restart Dialog",\n "description": "Whether the kernel restart confirmation dialog is skipped when restarting the kernel.",\n "type": "boolean",\n "default": false\n }\n },\n "type": "object"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\apputils-extension\sessionDialogs.json
sessionDialogs.json
JSON
395
0.7
0
0
python-kit
284
2025-02-19T15:05:01.592858
GPL-3.0
false
d1d16674c4d0d2cc2e7b68515ea8053d
{\n "title": "Theme",\n "jupyter.lab.setting-icon-label": "Theme Manager",\n "jupyter.lab.menus": {\n "main": [\n {\n "id": "jp-mainmenu-settings",\n "items": [\n {\n "type": "submenu",\n "submenu": {\n "id": "jp-mainmenu-settings-apputilstheme",\n "label": "Theme",\n "items": [\n { "type": "separator" },\n {\n "command": "apputils:adaptive-theme"\n },\n { "type": "separator" },\n {\n "command": "apputils:theme-scrollbars"\n },\n { "type": "separator" },\n {\n "command": "apputils:incr-font-size",\n "args": {\n "key": "code-font-size"\n }\n },\n {\n "command": "apputils:decr-font-size",\n "args": {\n "key": "code-font-size"\n }\n },\n { "type": "separator" },\n {\n "command": "apputils:incr-font-size",\n "args": {\n "key": "content-font-size1"\n }\n },\n {\n "command": "apputils:decr-font-size",\n "args": {\n "key": "content-font-size1"\n }\n },\n { "type": "separator" },\n {\n "command": "apputils:incr-font-size",\n "args": {\n "key": "ui-font-size1"\n }\n },\n {\n "command": "apputils:decr-font-size",\n "args": {\n "key": "ui-font-size1"\n }\n }\n ]\n },\n "rank": 0\n }\n ]\n }\n ]\n },\n "description": "Theme manager settings.",\n "type": "object",\n "additionalProperties": false,\n "definitions": {\n "cssOverrides": {\n "type": "object",\n "additionalProperties": false,\n "description": "The description field of each item is the CSS property that will be used to validate an override's value",\n "properties": {\n "code-font-family": {\n "type": ["string", "null"],\n "description": "font-family"\n },\n "code-font-size": {\n "type": ["string", "null"],\n "description": "font-size"\n },\n\n "content-font-family": {\n "type": ["string", "null"],\n "description": "font-family"\n },\n "content-font-size1": {\n "type": ["string", "null"],\n "description": "font-size"\n },\n\n "ui-font-family": {\n "type": ["string", "null"],\n "description": "font-family"\n },\n "ui-font-size1": {\n "type": ["string", "null"],\n "description": "font-size"\n }\n }\n }\n },\n "properties": {\n "theme": {\n "type": "string",\n "title": "Selected Theme",\n "description": "Application-level visual styling theme. Ignored when Adaptive Theme is enabled.",\n "default": "JupyterLab Light"\n },\n "adaptive-theme": {\n "type": "boolean",\n "title": "Adaptive Theme",\n "description": "Synchronize visual styling theme with system settings",\n "default": false\n },\n "preferred-light-theme": {\n "type": "string",\n "title": "Preferred Light Theme",\n "description": "Application-level light visual styling theme. Ignored when Adaptive Theme is disabled.",\n "default": "JupyterLab Light"\n },\n "preferred-dark-theme": {\n "type": "string",\n "title": "Preferred Dark Theme",\n "description": "Application-level dark visual styling theme. Ignored when Adaptive Theme is disabled.",\n "default": "JupyterLab Dark"\n },\n "theme-scrollbars": {\n "type": "boolean",\n "title": "Scrollbar Theming",\n "description": "Enable/disable styling of the application scrollbars",\n "default": false\n },\n "overrides": {\n "title": "Theme CSS Overrides",\n "description": "Override theme CSS variables by setting key-value pairs here",\n "$ref": "#/definitions/cssOverrides",\n "default": {\n "code-font-family": null,\n "code-font-size": null,\n\n "content-font-family": null,\n "content-font-size1": null,\n\n "ui-font-family": null,\n "ui-font-size1": null\n }\n }\n }\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\apputils-extension\themes.json
themes.json
JSON
4,575
0.8
0
0
awesome-app
496
2024-11-11T20:52:16.666698
Apache-2.0
false
60a8bd5e357b4cc13bedc81781786c47
{\n "title": "Shortcuts Help",\n "description": "Shortcut help settings.",\n "jupyter.lab.menus": {\n "main": [\n {\n "id": "jp-mainmenu-help",\n "items": [\n {\n "type": "separator",\n "rank": 0.1\n },\n {\n "command": "apputils:display-shortcuts",\n "rank": 0.1\n },\n {\n "type": "separator",\n "rank": 0.1\n }\n ]\n }\n ]\n },\n "jupyter.lab.shortcuts": [\n {\n "command": "apputils:display-shortcuts",\n "keys": ["Accel Shift H"],\n "selector": "body"\n }\n ],\n "properties": {},\n "type": "object",\n "additionalProperties": false\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\apputils-extension\utilityCommands.json
utilityCommands.json
JSON
694
0.7
0
0
awesome-app
358
2024-02-15T01:29:07.143245
BSD-3-Clause
false
c765adf107e56133e33cd3378922f9e7
{\n "name": "@jupyterlab/cell-toolbar-extension",\n "version": "4.4.4",\n "description": "Extension for cell toolbar adapted from jlab-enhanced-cell-toolbar",\n "homepage": "https://github.com/jupyterlab/jupyterlab",\n "bugs": {\n "url": "https://github.com/jupyterlab/jupyterlab/issues"\n },\n "repository": {\n "type": "git",\n "url": "https://github.com/jupyterlab/jupyterlab.git"\n },\n "license": "BSD-3-Clause",\n "author": "Project Jupyter",\n "sideEffects": [\n "style/**/*"\n ],\n "main": "lib/index.js",\n "types": "lib/index.d.ts",\n "style": "style/index.css",\n "directories": {\n "lib": "lib/"\n },\n "files": [\n "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",\n "schema/*.json",\n "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",\n "style/index.js",\n "src/**/*.{ts,tsx}"\n ],\n "scripts": {\n "build": "tsc -b",\n "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",\n "watch": "tsc -b --watch"\n },\n "dependencies": {\n "@jupyterlab/application": "^4.4.4",\n "@jupyterlab/apputils": "^4.5.4",\n "@jupyterlab/cell-toolbar": "^4.4.4",\n "@jupyterlab/settingregistry": "^4.4.4",\n "@jupyterlab/translation": "^4.4.4"\n },\n "devDependencies": {\n "rimraf": "~5.0.5",\n "typescript": "~5.5.4"\n },\n "publishConfig": {\n "access": "public"\n },\n "jupyterlab": {\n "extension": true,\n "schemaDir": "schema"\n },\n "styleModule": "style/index.js"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\cell-toolbar-extension\package.json.orig
package.json.orig
Other
1,443
0.8
0.018182
0
node-utils
708
2024-12-31T09:36:18.643560
MIT
false
a9ec6a70625bae2760255cc63e3b31e2
{\n "$schema": "http://json-schema.org/draft-07/schema",\n "title": "Cell Toolbar",\n "description": "Cell Toolbar Settings.",\n "jupyter.lab.toolbars": {\n "Cell": [\n {\n "name": "duplicate-cell",\n "command": "notebook:duplicate-below"\n },\n { "name": "move-cell-up", "command": "notebook:move-cell-up" },\n { "name": "move-cell-down", "command": "notebook:move-cell-down" },\n {\n "name": "insert-cell-above",\n "command": "notebook:insert-cell-above"\n },\n {\n "name": "insert-cell-below",\n "command": "notebook:insert-cell-below"\n },\n {\n "command": "notebook:delete-cell",\n "icon": "ui-components:delete",\n "name": "delete-cell"\n }\n ]\n },\n "jupyter.lab.transform": true,\n "properties": {\n "showToolbar": {\n "title": "Show cell toolbar",\n "description": "Show a toolbar inside the active cell, if there is enough room for one",\n "type": "boolean",\n "default": true\n },\n "toolbar": {\n "title": "List of toolbar items",\n "description": "An item is defined by a 'name', a 'command' name, and an 'icon' name",\n "type": "array",\n "items": {\n "$ref": "#/definitions/toolbarItem"\n },\n "default": []\n }\n },\n "additionalProperties": false,\n "type": "object",\n "definitions": {\n "toolbarItem": {\n "properties": {\n "name": {\n "title": "Unique name",\n "type": "string"\n },\n "args": {\n "title": "Command arguments",\n "type": "object"\n },\n "command": {\n "title": "Command id",\n "type": "string",\n "default": ""\n },\n "disabled": {\n "title": "Whether the item is ignored or not",\n "type": "boolean",\n "default": false\n },\n "icon": {\n "title": "Item icon id",\n "description": "If defined, it will override the command icon",\n "type": "string"\n },\n "label": {\n "title": "Item label",\n "description": "If defined, it will override the command label",\n "type": "string"\n },\n "caption": {\n "title": "Item caption",\n "description": "If defined, it will override the command caption",\n "type": "string"\n },\n "type": {\n "title": "Item type",\n "type": "string",\n "enum": ["command", "spacer"]\n },\n "rank": {\n "title": "Item rank",\n "type": "number",\n "minimum": 0,\n "default": 50\n }\n },\n "required": ["name"],\n "additionalProperties": false,\n "type": "object"\n }\n }\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\cell-toolbar-extension\plugin.json
plugin.json
JSON
2,724
0.95
0.019802
0
awesome-app
634
2023-12-16T23:42:27.233234
BSD-3-Clause
false
aad27da51835869e42b344a950a3a4c6
{\n "name": "@jupyterlab/celltags-extension",\n "version": "4.4.4",\n "description": "An extension for manipulating tags in cell metadata",\n "keywords": [\n "jupyter",\n "jupyterlab",\n "jupyterlab-extension"\n ],\n "homepage": "https://github.com/jupyterlab/jupyterlab",\n "bugs": {\n "url": "https://github.com/jupyterlab/jupyterlab/issues"\n },\n "repository": {\n "type": "git",\n "url": "https://github.com/jupyterlab/jupyterlab.git"\n },\n "license": "BSD-3-Clause",\n "author": "Project Jupyter",\n "sideEffects": [\n "style/*.css",\n "style/index.js"\n ],\n "main": "lib/index.js",\n "types": "lib/index.d.ts",\n "style": "style/index.css",\n "directories": {\n "lib": "lib/"\n },\n "files": [\n "lib/*.{d.ts,js,js.map}",\n "style/*.css",\n "style/index.js",\n "src/**/*.{ts,tsx}",\n "schema/*.json"\n ],\n "scripts": {\n "build": "tsc",\n "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",\n "watch": "tsc -b --watch"\n },\n "dependencies": {\n "@jupyterlab/application": "^4.4.4",\n "@jupyterlab/notebook": "^4.4.4",\n "@jupyterlab/translation": "^4.4.4",\n "@jupyterlab/ui-components": "^4.4.4",\n "@lumino/algorithm": "^2.0.3",\n "@rjsf/utils": "^5.13.4",\n "react": "^18.2.0"\n },\n "devDependencies": {\n "rimraf": "~5.0.5",\n "typescript": "~5.5.4"\n },\n "publishConfig": {\n "access": "public"\n },\n "jupyterlab": {\n "extension": true,\n "schemaDir": "schema"\n },\n "styleModule": "style/index.js"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\celltags-extension\package.json.orig
package.json.orig
Other
1,482
0.8
0.015873
0
node-utils
894
2024-11-23T10:54:35.498805
MIT
false
cf1dac7b82254e0a4c834e21744d9e81
{\n "type": "object",\n "title": "Common tools",\n "description": "Setting for the common tools",\n "jupyter.lab.metadataforms": [\n {\n "id": "commonToolsSection",\n "label": "Common tools",\n "metadataSchema": {\n "type": "object",\n "properties": {\n "/tags": {\n "title": "Cell tag",\n "type": "array",\n "default": [],\n "items": {\n "type": "string"\n }\n }\n }\n },\n "uiSchema": {\n "ui:order": ["_CELL-TOOL", "/tags", "*"]\n },\n "metadataOptions": {\n "/tags": {\n "customRenderer": "@jupyterlab/celltags-extension:plugin.renderer"\n }\n }\n }\n ],\n "additionalProperties": false\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\celltags-extension\plugin.json
plugin.json
JSON
751
0.7
0.030303
0
vue-tools
978
2023-12-23T10:45:08.594217
GPL-3.0
false
c52fa419501e0b246c4418528bbcf9b2
{\n "name": "@jupyterlab/codemirror-extension",\n "version": "4.4.4",\n "description": "JupyterLab - CodeMirror Provider Extension",\n "homepage": "https://github.com/jupyterlab/jupyterlab",\n "bugs": {\n "url": "https://github.com/jupyterlab/jupyterlab/issues"\n },\n "repository": {\n "type": "git",\n "url": "https://github.com/jupyterlab/jupyterlab.git"\n },\n "license": "BSD-3-Clause",\n "author": "Project Jupyter",\n "sideEffects": [\n "style/**/*.css",\n "style/index.js"\n ],\n "main": "lib/index.js",\n "types": "lib/index.d.ts",\n "style": "style/index.css",\n "directories": {\n "lib": "lib/"\n },\n "files": [\n "lib/*.d.ts",\n "lib/*.js.map",\n "lib/*.js",\n "schema/*.json",\n "style/**/*.css",\n "style/index.js",\n "src/**/*.{ts,tsx}"\n ],\n "scripts": {\n "build": "tsc -b",\n "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",\n "watch": "tsc -b --watch"\n },\n "dependencies": {\n "@codemirror/commands": "^6.8.1",\n "@codemirror/lang-markdown": "^6.3.2",\n "@codemirror/language": "^6.11.0",\n "@codemirror/legacy-modes": "^6.5.1",\n "@codemirror/search": "^6.5.10",\n "@codemirror/view": "^6.36.6",\n "@jupyter/ydoc": "^3.0.4",\n "@jupyterlab/application": "^4.4.4",\n "@jupyterlab/codeeditor": "^4.4.4",\n "@jupyterlab/codemirror": "^4.4.4",\n "@jupyterlab/settingregistry": "^4.4.4",\n "@jupyterlab/statusbar": "^4.4.4",\n "@jupyterlab/translation": "^4.4.4",\n "@jupyterlab/ui-components": "^4.4.4",\n "@lumino/coreutils": "^2.2.1",\n "@lumino/widgets": "^2.7.1",\n "@rjsf/utils": "^5.13.4",\n "@rjsf/validator-ajv8": "^5.13.4",\n "react": "^18.2.0"\n },\n "devDependencies": {\n "@types/react": "^18.0.26",\n "rimraf": "~5.0.5",\n "typescript": "~5.5.4"\n },\n "publishConfig": {\n "access": "public"\n },\n "jupyterlab": {\n "extension": true,\n "schemaDir": "schema"\n },\n "styleModule": "style/index.js"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\codemirror-extension\package.json.orig
package.json.orig
Other
1,922
0.8
0
0
python-kit
1
2025-05-05T00:48:51.217377
Apache-2.0
false
f59ad3148b4365bf483b19af7cfac774
{\n "jupyter.lab.setting-icon": "ui-components:text-editor",\n "jupyter.lab.setting-icon-label": "CodeMirror",\n "jupyter.lab.shortcuts": [\n {\n "command": "codemirror:delete-line",\n "keys": ["Accel D"],\n "selector": ".cm-content"\n },\n {\n "command": "codemirror:delete-line",\n "keys": ["Accel Shift K"],\n "selector": ".cm-content"\n },\n {\n "command": "codemirror:toggle-block-comment",\n "keys": ["Alt A"],\n "selector": ".cm-content"\n },\n {\n "command": "codemirror:toggle-comment",\n "keys": ["Accel /"],\n "selector": ".cm-content"\n },\n {\n "command": "codemirror:select-next-occurrence",\n "keys": ["Accel Shift D"],\n "selector": ".cm-content"\n }\n ],\n "title": "CodeMirror",\n "description": "Text editor settings for all CodeMirror editors.",\n "properties": {\n "defaultConfig": {\n "default": {},\n "title": "Default editor configuration",\n "description": "Base configuration used by all CodeMirror editors.",\n "type": "object"\n }\n },\n "type": "object"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\codemirror-extension\plugin.json
plugin.json
JSON
1,085
0.7
0.02381
0
python-kit
676
2024-02-02T07:09:30.358907
MIT
false
7a983d22636dda4e650d533d46665641
{\n "title": "Inline Completer",\n "description": "Inline completer settings.",\n "jupyter.lab.setting-icon": "completer:inline",\n "jupyter.lab.setting-icon-label": "Inline Completer",\n "jupyter.lab.transform": true,\n "jupyter.lab.shortcuts": [\n {\n "command": "inline-completer:next",\n "keys": ["Alt ]"],\n "selector": ".jp-mod-completer-enabled",\n "preventDefault": false\n },\n {\n "command": "inline-completer:previous",\n "keys": ["Alt ["],\n "selector": ".jp-mod-completer-enabled",\n "preventDefault": false\n },\n {\n "command": "inline-completer:accept",\n "keys": ["Tab"],\n "selector": ".jp-mod-inline-completer-active"\n },\n {\n "command": "inline-completer:accept",\n "keys": ["Alt End"],\n "selector": ".jp-mod-inline-completer-active"\n },\n {\n "command": "inline-completer:invoke",\n "keys": ["Alt \\"],\n "selector": ".jp-mod-completer-enabled",\n "preventDefault": false\n }\n ],\n "properties": {\n "providers": {\n "title": "Inline completion providers",\n "type": "object",\n "default": {}\n },\n "showWidget": {\n "title": "Show widget",\n "description": "When to show the inline completer widget.",\n "type": "string",\n "oneOf": [\n { "const": "always", "title": "Always" },\n { "const": "onHover", "title": "On hover" },\n { "const": "never", "title": "Never" }\n ],\n "default": "onHover"\n },\n "showShortcuts": {\n "title": "Show shortcuts in the widget",\n "description": "Whether to show shortcuts in the inline completer widget.",\n "type": "boolean",\n "default": true\n },\n "suppressIfTabCompleterActive": {\n "title": "Suppress when the tab completer is active",\n "description": "Whether to suppress the inline completer when the tab completer suggestions are shown.",\n "type": "boolean",\n "default": true\n },\n "streamingAnimation": {\n "title": "Streaming animation",\n "description": "Transition effect used when streaming tokens from model.",\n "type": "string",\n "oneOf": [\n { "const": "none", "title": "None" },\n { "const": "uncover", "title": "Uncover" }\n ],\n "default": "uncover"\n },\n "minLines": {\n "title": "Reserve lines for inline completion",\n "description": "Number of lines to reserve for the ghost text with inline completion suggestion.",\n "type": "number",\n "default": 0,\n "minimum": 0\n },\n "maxLines": {\n "title": "Limit inline completion lines",\n "description": "Number of lines of inline completion to show before collapsing. Setting zero disables the limit.",\n "type": "number",\n "default": 0,\n "minimum": 0\n },\n "reserveSpaceForLongest": {\n "title": "Reserve space for the longest candidate",\n "description": "When multiple completions are returned, reserve blank space for up to as many lines as in the longest completion candidate to avoid resizing editor when cycling between the suggestions.",\n "type": "boolean",\n "default": false\n },\n "editorResizeDelay": {\n "title": "Editor resize delay",\n "description": "When an inline completion gets cancelled the editor may change its size rapidly. When typing in the editor, the completions may get dismissed frequently causing a noticeable jitter of the editor height. Adding a delay prevents the jitter on typing. The value should be in milliseconds.",\n "type": "number",\n "default": 1000,\n "minimum": 0\n }\n },\n "additionalProperties": false,\n "type": "object"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\completer-extension\inline-completer.json
inline-completer.json
JSON
3,644
0.7
0.037736
0
node-utils
670
2025-06-23T21:29:27.163213
MIT
false
2317058da944bb7946facf7b81214aee
{\n "title": "Code Completion",\n "description": "Code Completion settings.",\n "jupyter.lab.setting-icon": "completer:widget",\n "jupyter.lab.setting-icon-label": "Code Completer",\n "jupyter.lab.transform": true,\n "properties": {\n "availableProviders": {\n "title": "Completion providers rank setting.",\n "description": "Providers with higher rank will be shown before the ones with lower rank, providers with negative rank are disabled.",\n "type": "object",\n "patternProperties": {\n "^.*$": {\n "type": "integer"\n }\n },\n "additionalProperties": false,\n "default": {\n "CompletionProvider:context": 500,\n "CompletionProvider:kernel": 550\n }\n },\n "providerTimeout": {\n "title": "Default timeout for a provider.",\n "description": "If a provider can not return the response for a completer request before timeout, the result of this provider will be ignored. Value is in millisecond",\n "type": "number",\n "default": 1000\n },\n "showDocumentationPanel": {\n "title": "Show the documentation panel.",\n "description": "Documentation panel setting.",\n "type": "boolean",\n "default": false\n },\n "autoCompletion": {\n "title": "Enable autocompletion.",\n "description": "Autocompletion setting.",\n "type": "boolean",\n "default": false\n },\n "suppressIfInlineCompleterActive": {\n "title": "Suppress when the inline completer is active",\n "description": "Whether to suppress the tab completer when inline completions are presented.",\n "type": "boolean",\n "default": true\n }\n },\n "additionalProperties": false,\n "type": "object"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\completer-extension\manager.json
manager.json
JSON
1,704
0.7
0.04
0
vue-tools
692
2023-08-19T09:25:45.493317
Apache-2.0
false
a9df787fc4beb60e382335deca069e5b
{\n "name": "@jupyterlab/completer-extension",\n "version": "4.4.4",\n "description": "JupyterLab - Completer Extension",\n "homepage": "https://github.com/jupyterlab/jupyterlab",\n "bugs": {\n "url": "https://github.com/jupyterlab/jupyterlab/issues"\n },\n "repository": {\n "type": "git",\n "url": "https://github.com/jupyterlab/jupyterlab.git"\n },\n "license": "BSD-3-Clause",\n "author": "Project Jupyter",\n "sideEffects": [\n "style/**/*.css",\n "style/index.js"\n ],\n "main": "lib/index.js",\n "types": "lib/index.d.ts",\n "style": "style/index.css",\n "directories": {\n "lib": "lib/"\n },\n "files": [\n "lib/*.d.ts",\n "lib/*.js.map",\n "lib/*.js",\n "schema/*.json",\n "style/**/*.css",\n "style/index.js",\n "src/**/*.{ts,tsx}"\n ],\n "scripts": {\n "build": "tsc -b",\n "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",\n "watch": "tsc -b --watch"\n },\n "dependencies": {\n "@jupyterlab/application": "^4.4.4",\n "@jupyterlab/codeeditor": "^4.4.4",\n "@jupyterlab/completer": "^4.4.4",\n "@jupyterlab/settingregistry": "^4.4.4",\n "@jupyterlab/translation": "^4.4.4",\n "@jupyterlab/ui-components": "^4.4.4",\n "@lumino/commands": "^2.3.2",\n "@lumino/coreutils": "^2.2.1",\n "@rjsf/utils": "^5.13.4",\n "react": "^18.2.0"\n },\n "devDependencies": {\n "rimraf": "~5.0.5",\n "typescript": "~5.5.4"\n },\n "publishConfig": {\n "access": "public"\n },\n "jupyterlab": {\n "extension": true,\n "schemaDir": "schema"\n },\n "styleModule": "style/index.js"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\completer-extension\package.json.orig
package.json.orig
Other
1,536
0.8
0
0
react-lib
339
2024-09-25T08:02:48.006783
Apache-2.0
false
783d924479108db53a299b840a54d8ae
{\n "title": "Console Completer",\n "description": "Console completer settings.",\n "jupyter.lab.shortcuts": [\n {\n "command": "completer:invoke-console",\n "keys": ["Tab"],\n "selector": ".jp-CodeConsole-promptCell .jp-mod-completer-enabled:not(.jp-mod-at-line-beginning)"\n }\n ],\n "properties": {},\n "additionalProperties": false,\n "type": "object"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\console-extension\completer.json
completer.json
JSON
374
0.7
0
0
awesome-app
644
2024-03-27T11:56:59.182827
Apache-2.0
false
e9c26c87cde10b03edb636a34f308581
{\n "title": "Code Console Foreign plugin",\n "description": "Code Console Foreign plugin settings.",\n "jupyter.lab.menus": {\n "context": [\n {\n "command": "console:toggle-show-all-kernel-activity",\n "selector": ".jp-CodeConsole",\n "rank": 20\n }\n ]\n },\n "properties": {},\n "additionalProperties": false,\n "type": "object"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\console-extension\foreign.json
foreign.json
JSON
365
0.7
0
0
react-lib
556
2024-09-15T09:44:07.861854
MIT
false
03f955de5d46b19f69a514e0648d18c0
{\n "name": "@jupyterlab/console-extension",\n "version": "4.4.4",\n "description": "JupyterLab - Code Console Extension",\n "homepage": "https://github.com/jupyterlab/jupyterlab",\n "bugs": {\n "url": "https://github.com/jupyterlab/jupyterlab/issues"\n },\n "repository": {\n "type": "git",\n "url": "https://github.com/jupyterlab/jupyterlab.git"\n },\n "license": "BSD-3-Clause",\n "author": "Project Jupyter",\n "sideEffects": [\n "style/**/*.css",\n "style/index.js"\n ],\n "main": "lib/index.js",\n "types": "lib/index.d.ts",\n "style": "style/index.css",\n "directories": {\n "lib": "lib/"\n },\n "files": [\n "lib/*.d.ts",\n "lib/*.js.map",\n "lib/*.js",\n "schema/*.json",\n "style/**/*.css",\n "style/index.js",\n "src/**/*.{ts,tsx}"\n ],\n "scripts": {\n "build": "tsc -b",\n "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",\n "watch": "tsc -b --watch"\n },\n "dependencies": {\n "@jupyterlab/application": "^4.4.4",\n "@jupyterlab/apputils": "^4.5.4",\n "@jupyterlab/codeeditor": "^4.4.4",\n "@jupyterlab/completer": "^4.4.4",\n "@jupyterlab/console": "^4.4.4",\n "@jupyterlab/filebrowser": "^4.4.4",\n "@jupyterlab/launcher": "^4.4.4",\n "@jupyterlab/mainmenu": "^4.4.4",\n "@jupyterlab/rendermime": "^4.4.4",\n "@jupyterlab/settingregistry": "^4.4.4",\n "@jupyterlab/translation": "^4.4.4",\n "@jupyterlab/ui-components": "^4.4.4",\n "@lumino/algorithm": "^2.0.3",\n "@lumino/coreutils": "^2.2.1",\n "@lumino/disposable": "^2.1.4",\n "@lumino/properties": "^2.0.3",\n "@lumino/widgets": "^2.7.1"\n },\n "devDependencies": {\n "rimraf": "~5.0.5",\n "typescript": "~5.5.4"\n },\n "publishConfig": {\n "access": "public"\n },\n "jupyterlab": {\n "extension": true,\n "schemaDir": "schema"\n },\n "styleModule": "style/index.js"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\console-extension\package.json.orig
package.json.orig
Other
1,821
0.8
0
0
vue-tools
345
2024-12-22T12:28:56.693541
BSD-3-Clause
false
c5e6b286ab7c0bf207a6f67543883603
{\n "title": "Code Console",\n "description": "Code Console settings.",\n "jupyter.lab.setting-icon": "ui-components:console",\n "jupyter.lab.setting-icon-label": "Code Console Settings",\n "jupyter.lab.menus": {\n "main": [\n {\n "id": "jp-mainmenu-file",\n "items": [\n {\n "type": "submenu",\n "submenu": {\n "id": "jp-mainmenu-file-new",\n "items": [\n {\n "command": "console:create",\n "rank": 1\n }\n ]\n }\n }\n ]\n },\n {\n "id": "jp-mainmenu-settings",\n "items": [\n {\n "type": "separator",\n "rank": 9\n },\n {\n "type": "submenu",\n "submenu": {\n "id": "jp-mainmenu-settings-consoleexecute",\n "label": "Console Run Keystroke",\n "items": [\n {\n "command": "console:interaction-mode",\n "args": {\n "interactionMode": "terminal"\n }\n },\n {\n "command": "console:interaction-mode",\n "args": {\n "interactionMode": "notebook"\n }\n }\n ]\n },\n "rank": 9\n },\n {\n "type": "separator",\n "rank": 9\n }\n ]\n }\n ],\n "context": [\n {\n "command": "console:undo",\n "selector": ".jp-CodeConsole-promptCell",\n "rank": 1\n },\n {\n "command": "console:redo",\n "selector": ".jp-CodeConsole-promptCell",\n "rank": 2\n },\n {\n "command": "console:clear",\n "selector": ".jp-CodeConsole-content",\n "rank": 10\n },\n {\n "command": "console:restart-kernel",\n "selector": ".jp-CodeConsole",\n "rank": 30\n }\n ]\n },\n "jupyter.lab.shortcuts": [\n {\n "command": "console:run-forced",\n "keys": ["Shift Enter"],\n "selector": ".jp-CodeConsole[data-jp-interaction-mode='notebook'] .jp-CodeConsole-promptCell"\n },\n {\n "command": "console:linebreak",\n "keys": ["Accel Enter"],\n "selector": ".jp-CodeConsole[data-jp-interaction-mode='terminal'] .jp-CodeConsole-promptCell"\n },\n {\n "command": "console:run-forced",\n "keys": ["Shift Enter"],\n "selector": ".jp-CodeConsole[data-jp-interaction-mode='terminal'] .jp-CodeConsole-promptCell"\n },\n {\n "command": "console:run-unforced",\n "keys": ["Enter"],\n "selector": ".jp-CodeConsole[data-jp-interaction-mode='terminal'] .jp-CodeConsole-promptCell"\n }\n ],\n "jupyter.lab.toolbars": {\n "ConsolePanel": [\n {\n "name": "run",\n "command": "console:run-forced",\n "rank": 0\n },\n { "name": "restart", "command": "console:restart-kernel", "rank": 10 },\n { "name": "clear", "command": "console:clear", "rank": 20 },\n { "name": "spacer", "type": "spacer", "rank": 100 },\n { "name": "kernelName", "rank": 1000 },\n { "name": "kernelStatus", "rank": 1010 },\n { "name": "promptPosition", "rank": 1020 }\n ]\n },\n "jupyter.lab.transform": true,\n "properties": {\n "clearCellsOnExecute": {\n "title": "Clear Cells on Execute",\n "description": "Whether to clear the console when code is executed.",\n "type": "boolean",\n "default": false\n },\n "clearCodeContentOnExecute": {\n "title": "Clear Code Content on Execute",\n "description": "Whether to clear the code content of the console when code is executed.",\n "type": "boolean",\n "default": true\n },\n "hideCodeInput": {\n "title": "Hide Code Input",\n "description": "Whether to hide the code input after a cell is executed.",\n "type": "boolean",\n "default": false\n },\n "interactionMode": {\n "title": "Interaction mode",\n "description": "Whether the console interaction mimics the notebook\nor terminal keyboard shortcuts.",\n "type": "string",\n "enum": ["notebook", "terminal"],\n "default": "notebook"\n },\n "showAllKernelActivity": {\n "title": "Show All Kernel Activity",\n "description": "Whether the console defaults to showing all\nkernel activity or just kernel activity originating from itself.",\n "type": "boolean",\n "default": false\n },\n "promptCellConfig": {\n "title": "Prompt Cell Configuration",\n "description": "The configuration for all prompt cells; it will override the CodeMirror default configuration.",\n "type": "object",\n "default": {\n "codeFolding": false,\n "lineNumbers": false\n }\n },\n "promptCellPosition": {\n "title": "Prompt Cell Position",\n "description": "Where to place the prompt cell of the console.",\n "type": "string",\n "oneOf": [\n { "const": "bottom", "title": "Bottom" },\n { "const": "top", "title": "Top" },\n { "const": "left", "title": "Left" },\n { "const": "right", "title": "Right" }\n ],\n "default": "bottom"\n },\n "showBanner": {\n "title": "Show Banner",\n "description": "Whether to show the kernel banner.",\n "type": "boolean",\n "default": true\n },\n "toolbar": {\n "title": "Console panel toolbar items",\n "description": "Note: To disable a toolbar item,\ncopy it to User Preferences and add the\n\"disabled\" key. The following example will disable the Interrupt button item:\n{\n \"toolbar\": [\n {\n \"name\": \"interrupt\",\n \"disabled\": true\n }\n ]\n}\n\nToolbar description:",\n "items": {\n "$ref": "#/definitions/toolbarItem"\n },\n "type": "array",\n "default": []\n }\n },\n "additionalProperties": false,\n "type": "object",\n "definitions": {\n "toolbarItem": {\n "properties": {\n "name": {\n "title": "Unique name",\n "type": "string"\n },\n "args": {\n "title": "Command arguments",\n "type": "object"\n },\n "command": {\n "title": "Command id",\n "type": "string",\n "default": ""\n },\n "disabled": {\n "title": "Whether the item is ignored or not",\n "type": "boolean",\n "default": false\n },\n "icon": {\n "title": "Item icon id",\n "description": "If defined, it will override the command icon",\n "type": "string"\n },\n "label": {\n "title": "Item label",\n "description": "If defined, it will override the command label",\n "type": "string"\n },\n "caption": {\n "title": "Item caption",\n "description": "If defined, it will override the command caption",\n "type": "string"\n },\n "type": {\n "title": "Item type",\n "type": "string",\n "enum": ["command", "spacer"]\n },\n "rank": {\n "title": "Item rank",\n "type": "number",\n "minimum": 0,\n "default": 50\n }\n },\n "required": ["name"],\n "additionalProperties": false,\n "type": "object"\n }\n }\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\console-extension\tracker.json
tracker.json
JSON
7,284
0.95
0.004065
0
awesome-app
162
2023-07-20T06:59:57.926727
MIT
false
93bdb88ba9affcf2355b31d2e92de8d5
{\n "title": "CSV Viewer",\n "description": "CSV Viewer settings.",\n "jupyter.lab.setting-icon": "ui-components:spreadsheet",\n "jupyter.lab.setting-icon-label": "CSV Viewer",\n "jupyter.lab.toolbars": {\n "CSVTable": [{ "name": "delimiter", "rank": 10 }]\n },\n "jupyter.lab.transform": true,\n "properties": {\n "toolbar": {\n "title": "CSV viewer toolbar items",\n "description": "Note: To disable a toolbar item,\ncopy it to User Preferences and add the\n\"disabled\" key. The following example will disable the delimiter selector item:\n{\n \"toolbar\": [\n {\n \"name\": \"delimiter\",\n \"disabled\": true\n }\n ]\n}\n\nToolbar description:",\n "items": {\n "$ref": "#/definitions/toolbarItem"\n },\n "type": "array",\n "default": []\n }\n },\n "additionalProperties": false,\n "type": "object",\n "definitions": {\n "toolbarItem": {\n "properties": {\n "name": {\n "title": "Unique name",\n "type": "string"\n },\n "args": {\n "title": "Command arguments",\n "type": "object"\n },\n "command": {\n "title": "Command id",\n "type": "string",\n "default": ""\n },\n "disabled": {\n "title": "Whether the item is ignored or not",\n "type": "boolean",\n "default": false\n },\n "icon": {\n "title": "Item icon id",\n "description": "If defined, it will override the command icon",\n "type": "string"\n },\n "label": {\n "title": "Item label",\n "description": "If defined, it will override the command label",\n "type": "string"\n },\n "caption": {\n "title": "Item caption",\n "description": "If defined, it will override the command caption",\n "type": "string"\n },\n "type": {\n "title": "Item type",\n "type": "string",\n "enum": ["command", "spacer"]\n },\n "rank": {\n "title": "Item rank",\n "type": "number",\n "minimum": 0,\n "default": 50\n }\n },\n "required": ["name"],\n "additionalProperties": false,\n "type": "object"\n }\n }\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\csvviewer-extension\csv.json
csv.json
JSON
2,244
0.95
0
0
react-lib
370
2024-08-22T16:30:00.104307
MIT
false
d73898b884efc8ff6989125309c5652b
{\n "name": "@jupyterlab/csvviewer-extension",\n "version": "4.4.4",\n "description": "JupyterLab - CSV Widget Extension",\n "homepage": "https://github.com/jupyterlab/jupyterlab",\n "bugs": {\n "url": "https://github.com/jupyterlab/jupyterlab/issues"\n },\n "repository": {\n "type": "git",\n "url": "https://github.com/jupyterlab/jupyterlab.git"\n },\n "license": "BSD-3-Clause",\n "author": "Project Jupyter",\n "sideEffects": [\n "style/**/*.css",\n "style/index.js"\n ],\n "main": "lib/index.js",\n "types": "lib/index.d.ts",\n "style": "style/index.css",\n "directories": {\n "lib": "lib/"\n },\n "files": [\n "lib/*.d.ts",\n "lib/*.js.map",\n "lib/*.js",\n "schema/*.json",\n "style/**/*.css",\n "style/index.js",\n "src/**/*.{ts,tsx}"\n ],\n "scripts": {\n "build": "tsc -b",\n "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",\n "watch": "tsc -b --watch"\n },\n "dependencies": {\n "@jupyterlab/application": "^4.4.4",\n "@jupyterlab/apputils": "^4.5.4",\n "@jupyterlab/csvviewer": "^4.4.4",\n "@jupyterlab/docregistry": "^4.4.4",\n "@jupyterlab/documentsearch": "^4.4.4",\n "@jupyterlab/mainmenu": "^4.4.4",\n "@jupyterlab/observables": "^5.4.4",\n "@jupyterlab/settingregistry": "^4.4.4",\n "@jupyterlab/translation": "^4.4.4",\n "@lumino/datagrid": "^2.5.2",\n "@lumino/widgets": "^2.7.1"\n },\n "devDependencies": {\n "rimraf": "~5.0.5",\n "typescript": "~5.5.4"\n },\n "publishConfig": {\n "access": "public"\n },\n "jupyterlab": {\n "extension": true,\n "schemaDir": "schema"\n },\n "styleModule": "style/index.js"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\csvviewer-extension\package.json.orig
package.json.orig
Other
1,600
0.8
0
0
awesome-app
953
2023-07-23T11:58:51.849655
GPL-3.0
false
31fadf97c732aba3010c947c1c77d9f6
{\n "title": "TSV Viewer",\n "description": "TSV Viewer settings.",\n "jupyter.lab.setting-icon": "ui-components:spreadsheet",\n "jupyter.lab.setting-icon-label": "TSV Viewer",\n "jupyter.lab.toolbars": {\n "TSVTable": [{ "name": "delimiter", "rank": 10 }]\n },\n "jupyter.lab.transform": true,\n "properties": {\n "toolbar": {\n "title": "TSV viewer toolbar items",\n "description": "Note: To disable a toolbar item,\ncopy it to User Preferences and add the\n\"disabled\" key. The following example will disable the delimiter selector item:\n{\n \"toolbar\": [\n {\n \"name\": \"delimiter\",\n \"disabled\": true\n }\n ]\n}\n\nToolbar description:",\n "items": {\n "$ref": "#/definitions/toolbarItem"\n },\n "type": "array",\n "default": []\n }\n },\n "additionalProperties": false,\n "type": "object",\n "definitions": {\n "toolbarItem": {\n "properties": {\n "name": {\n "title": "Unique name",\n "type": "string"\n },\n "args": {\n "title": "Command arguments",\n "type": "object"\n },\n "command": {\n "title": "Command id",\n "type": "string",\n "default": ""\n },\n "disabled": {\n "title": "Whether the item is ignored or not",\n "type": "boolean",\n "default": false\n },\n "icon": {\n "title": "Item icon id",\n "description": "If defined, it will override the command icon",\n "type": "string"\n },\n "label": {\n "title": "Item label",\n "description": "If defined, it will override the command label",\n "type": "string"\n },\n "caption": {\n "title": "Item caption",\n "description": "If defined, it will override the command caption",\n "type": "string"\n },\n "type": {\n "title": "Item type",\n "type": "string",\n "enum": ["command", "spacer"]\n },\n "rank": {\n "title": "Item rank",\n "type": "number",\n "minimum": 0,\n "default": 50\n }\n },\n "required": ["name"],\n "additionalProperties": false,\n "type": "object"\n }\n }\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\csvviewer-extension\tsv.json
tsv.json
JSON
2,244
0.95
0
0
node-utils
922
2024-10-31T08:22:30.353923
GPL-3.0
false
b71162354f7a6ebddc8cad5d672fabe2
{\n "title": "Debugger",\n "description": "Debugger settings",\n "jupyter.lab.setting-icon": "ui-components:bug",\n "jupyter.lab.setting-icon-label": "Debugger",\n "jupyter.lab.menus": {\n "main": [\n {\n "id": "jp-mainmenu-kernel",\n "items": [\n { "type": "separator", "rank": 1.2 },\n { "command": "debugger:restart-debug", "rank": 1.2 }\n ]\n },\n {\n "id": "jp-mainmenu-view",\n "items": [\n {\n "command": "debugger:show-panel",\n "rank": 5\n }\n ]\n }\n ],\n "context": [\n {\n "command": "debugger:inspect-variable",\n "selector": ".jp-DebuggerVariables-body .jp-DebuggerVariables-grid"\n },\n {\n "command": "debugger:render-mime-variable",\n "selector": ".jp-DebuggerVariables-body"\n },\n {\n "command": "debugger:copy-to-clipboard",\n "selector": ".jp-DebuggerVariables-body"\n },\n {\n "command": "debugger:copy-to-globals",\n "selector": ".jp-DebuggerVariables-body.jp-debuggerVariables-local"\n }\n ]\n },\n "jupyter.lab.shortcuts": [\n {\n "command": "debugger:show-panel",\n "keys": ["Accel Shift E"],\n "selector": "body"\n },\n {\n "command": "debugger:continue",\n "keys": ["F9"],\n "selector": "body"\n },\n {\n "command": "debugger:terminate",\n "keys": ["Shift F9"],\n "selector": "[data-jp-debugger-stopped-threads='true']"\n },\n {\n "command": "debugger:next",\n "keys": ["F10"],\n "selector": "[data-jp-debugger-stopped-threads='true']"\n },\n {\n "command": "debugger:stepIn",\n "keys": ["F11"],\n "selector": "[data-jp-debugger-stopped-threads='true']"\n },\n {\n "command": "debugger:stepOut",\n "keys": ["Shift F11"],\n "selector": "[data-jp-debugger-stopped-threads='true']"\n }\n ],\n "definitions": {\n "variableFilters": {\n "properties": {\n "xpython": {\n "type": "array",\n "items": {\n "type": "string"\n }\n }\n }\n }\n },\n "properties": {\n "variableFilters": {\n "title": "Variable filter",\n "description": "Variables to filter out in the tree and table viewers",\n "$ref": "#/definitions/variableFilters",\n "default": {\n "xpython": [\n "debugpy",\n "display",\n "get_ipython",\n "ptvsd",\n "_xpython_get_connection_filename",\n "_xpython_launch",\n "_pydev_stop_at_break",\n "__annotations__",\n "__builtins__",\n "__doc__",\n "__loader__",\n "__name__",\n "__package__",\n "__spec__"\n ]\n }\n },\n "defaultKernelSourcesFilter": {\n "title": "Default kernel sources regexp filter",\n "description": "A regular expression filter to apply by default when showing the kernel sources",\n "type": "string",\n "default": ""\n },\n "autoCollapseDebuggerSidebar": {\n "title": "Auto Collapse Debugger Sidebar",\n "description": "Collapse the debugger sidebar when disabling the debugger on a document.",\n "type": "boolean",\n "default": false\n }\n },\n "additionalProperties": false,\n "type": "object"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\debugger-extension\main.json
main.json
JSON
3,281
0.8
0
0
awesome-app
822
2025-02-02T03:11:42.971604
MIT
false
95a83a1267826553f0e4443facaa0ca8
{\n "name": "@jupyterlab/debugger-extension",\n "version": "4.4.4",\n "description": "JupyterLab - Debugger Extension",\n "keywords": [\n "jupyter",\n "jupyterlab",\n "jupyterlab-extension"\n ],\n "homepage": "https://github.com/jupyterlab/jupyterlab",\n "bugs": {\n "url": "https://github.com/jupyterlab/jupyterlab/issues"\n },\n "repository": {\n "type": "git",\n "url": "https://github.com/jupyterlab/jupyterlab.git"\n },\n "license": "BSD-3-Clause",\n "author": "Project Jupyter",\n "sideEffects": [\n "style/**/*.css",\n "style/index.js"\n ],\n "main": "lib/index.js",\n "types": "lib/index.d.ts",\n "style": "style/index.css",\n "directories": {\n "lib": "lib/"\n },\n "files": [\n "lib/**/*.d.ts",\n "lib/**/*.js.map",\n "lib/**/*.js",\n "schema/*.json",\n "style/**/*.css",\n "style/**/*.svg",\n "style/index.js",\n "src/**/*.{ts,tsx}"\n ],\n "scripts": {\n "build": "tsc -b",\n "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo && rimraf tsconfig.test.tsbuildinfo && rimraf tests/build",\n "watch": "tsc -b --watch"\n },\n "dependencies": {\n "@jupyterlab/application": "^4.4.4",\n "@jupyterlab/apputils": "^4.5.4",\n "@jupyterlab/cells": "^4.4.4",\n "@jupyterlab/codeeditor": "^4.4.4",\n "@jupyterlab/console": "^4.4.4",\n "@jupyterlab/coreutils": "^6.4.4",\n "@jupyterlab/debugger": "^4.4.4",\n "@jupyterlab/docregistry": "^4.4.4",\n "@jupyterlab/fileeditor": "^4.4.4",\n "@jupyterlab/logconsole": "^4.4.4",\n "@jupyterlab/notebook": "^4.4.4",\n "@jupyterlab/rendermime": "^4.4.4",\n "@jupyterlab/services": "^7.4.4",\n "@jupyterlab/settingregistry": "^4.4.4",\n "@jupyterlab/translation": "^4.4.4",\n "@lumino/commands": "^2.3.2"\n },\n "devDependencies": {\n "@jupyterlab/testing": "^4.4.4",\n "@types/jest": "^29.2.0",\n "@types/react-dom": "^18.0.9",\n "rimraf": "~5.0.5",\n "typescript": "~5.5.4"\n },\n "publishConfig": {\n "access": "public"\n },\n "jupyterlab": {\n "extension": true,\n "schemaDir": "schema"\n },\n "styleModule": "style/index.js"\n}\n
.venv\Lib\site-packages\jupyterlab\schemas\@jupyterlab\debugger-extension\package.json.orig
package.json.orig
Other
2,059
0.8
0
0
python-kit
213
2025-06-07T10:09:05.235241
BSD-3-Clause
false
6de7fe614397503e6c2f767c1a111571