Name | widlparser JSON |
Version |
1.4.0
JSON |
| download |
home_page | None |
Summary | WebIDL Parser |
upload_time | 2025-07-18 02:07:29 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | MIT Licence |
keywords |
config
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
widlparser
==========
Stand-alone WebIDL Parser in Python. Requires Python 3.9+.
Parses WebIDL per: http://dev.w3.org/2006/webapi/WebIDL/ (plus a few legacy compatability items)
This parser was created to support a W3C specification parser and pre-processor, it's API is geared towards finding and identifying various WebIDL constructs by name. However, all of the WebIDL source is parsed and stored in the construct objects. The parser has error recovery and preserves the entire input for re-serialization and markup of the WebIDL constructs.
Installation
------------
Standard python package installation:
pip install widlparser
Usage
-----
Import the widlparser package and instantiate a Parser.
import widlparser
widl = widlparser.Parser()
Either pass the WebIDL text to be parsed in the constructor or call the **Parser.parse(text)** method.
Parser class
------------
**class Parser([text[, ui]])**
The Parser's constructor takes two optional arguments, text and ui. If present, text is a string containing the WebIDL text to parse. ui.warn() will get called with any syntax errors encountered during parsing (if implemented). ui.note() will get called for any legacy WebIDL that was ignored during parsing (if implemented).
**Parser.constructs**
All top-level WebIDL constructs are stored in source order in the 'constructs' attribute.
**Parser.complexity_factor**
An index of the relative complexity of the Constructs defined in the parsed WebIDL. Useful as an index for specification test coverage
**Parser.parse(text)**
Parse additional WebIDL text. All parsed constructs will be appended to the 'constructs' attribute.
**Parser.reset()**
Clears all stored constructs.
**Parser.find(name)**
Return a named construct. If a single name is provided, a breadth-first search through all parsed constructs is performed. Alternatively, a path (names separated by "/" or ".") may be passed to target the search more narrowly. e.g.: find("Foo/bar/baz") looks for an Attribute 'baz', inside a Method 'bar', inside an Interface 'Foo'.
**Parser.find_all(name)**
Return a list of named constructs. Accepts the same search paths as Parser.find(name).
**Parser.normalized_method_name(name [, interface_name=None])**
Provide a normalized version of a method name, including the names of all arguments, e.g. "drawCircle(long x, long y, long radius)" becomes: "drawCircle(x, y, radius)". If a valid set of arguments is passed, the passed argument names will be returned in the normalized form. Otherwise, a search is performed for a matching previously parsed method name. The search may be narrowed to a particular interface by passing the name fo the interface or callbak in interface_name.
**Parser.normalized_method_names(name [, interface_name=None])**
Return a list of all possible normalized names for the method. If the method has optional arguments, the list will contain all possible argument variants. The first item in the list will always be the value returned from normalized_method_name.
**Parser.markup(marker)**
Returns a marked-up version of the WebIDL input text. The passed 'marker' object will get called back to markup individual elements of the WebIDL. See the Markup section for mroe detail.
Constructs
----------
All Constructs accessed from the parser's Parser.constructs attribute or returned from the parser's find() method are subclasses of the Construct class. The base class provides the following:
**Construct.name**
The name of the construct.
**Construct.idl_type**
Contains a string indicating the type of the construct. Possible values are: "const", "enum", "typedef", "interface", "constructor", "attribute", "iterable", "maplike", "setlike", "stringifier", "serializer", "method", "argument", "dictionary", "dict-member", "callback", "implements", "extended-attribute", and "unknown".
**Construct.full_name**
The name of the construct and all of its parents in path form, e.g.: 'Interface/method_name(argument)/argument'.
**Construct.method_name**
For 'method' Constructs, contains the normalized method name, otherwise None.
**Construct.method_names**
For 'method' Constructs, contains the list of all possible normalized method names, otherwise None. Methods have multiple possible normalized names if they contain optional arguments or are variadic.
**Construct.normal_name**
For 'method' Constructs, contains the normalized method name, otherwise the name of the construct.
**Construct.parent**
The parent construct, if it has one. Throws a KeyError if it is a top-level Construct in the source WebIDL.
**Construct.has_parent**
A bool specifying whether the construct has a parent or not (and thus whether `.parent` will throw or not when accessed.)
**Construct.extended_attributes**
A list of extended attributes, or None. Extended attributes are stored as Constructs, those of the forms: 'identifier', 'identifier=identifier', 'identifier(ArgumentList)', 'identifier=identifier(ArgumentList)', or 'identifier(Type,Type)' are parsed. The first identifier is stored in 'Construct.attribute', the second, if present, is stored in 'Construct.name', arguments are stored in 'Construct.arguments'. Extended attributes not mathing those five forms contain a list of tokens in 'Construct.tokens' and their name is set to 'None'.
**Construct.constructors**
A list of any extended attributes matching the Constructor or LegacyFactoryFunction form. Any constructors present will be prepended to the 'members' attribute of an 'interface' Construct.
**Construct.complexity_factor**
An index of the complexity of the construct. See Parser.complexity_factor.
**Construct.find_member(name)**
Find a member of the construct. For 'callback' Constructs with an interface, will search the interface.
**Construct.find_members(name)**
Return a list of members of the construct matching the name. For 'callback' Constructs with an interface, will search the interface.
**Construct.find_method(name)**
Find a method within the construct.
**Construct.find_methods(name)**
Return a list of methods within the construct matching the name.
**Construct.find_argument(name[, search_members=True])**
Find an argument within the construct. If 'search_members' is true, all members will be searched as well. This allows distinguishing between arguments of a callback versus arguments of a callback interface's methods.
**Construct.find_arguments(name[, search_members=True])**
Return a list of arguments within the construct mathcing the name. If 'search_members' is true, all members will be searched as well. This allows distinguishing between arguments of a callback versus arguments of a callback interface's methods.
**Construct.markup(marker)**
Returns a marked-up version of the Constructs's WebIDL source text. See Parser.markup(marker) for information.
Construct Subclasses
--------------------
Each Construct will be an instance of a Construct subclass corresponding to its 'Construct.idl_type'. Specific subclasses provide the following additional attributes:
**Const.type**
The Type Production of the Const.
**Const.value**
The ConstValue Production of the Const.
**Enum.values**
The EnumValueList Production of the Enum.
**Typedef.type**
The Type Production of the Typedef.
**Argument.type**
The Type Production of the Argument.
**Argument.variadic**
The Symbol "variadic" or 'None'.
**Argument.optional**
The Symbol "optional" or 'None'.
**Argument.default**
The Default Production of the Argument or 'None'.
**InterfaceMember.member**
One of the following Constructs or Productions: Const, Serializer, Stringifier, StaticMember, Iterable, Maplike, Setlike, Attribute, SpecialOperation, or Operation.
**InterfaceMember.arguments**
Contains a list of any arguments present or 'None'.
**Interface.partial**
The Symbol "partial" or 'None'.
**Interface.inheritance**
The Inheritance Production of the Interface or 'None'.
**Interface.members**
A list of InterfaceMembers.
**DictionaryMember.type**
The Type Production of the DictionaryMember.
**DictionaryMember.default**
The Default Production of the DictionaryMember or 'None'.
**Dictionary.inheritance**
The Inheritance Production of the Dictionary or 'None'.
**Dictionary.members**
A list of DictionaryMembers.
**Callback.return_type**
The return Type Production of the Callback.
**Callback.arguments**
Contains a list of any arguments present or 'None' for interface callbacks.
**Callback.interface**
The 'interface' Construct of the callback, or 'None' for function callbacks.
**ImplementsStatement.implements**
A string of the type implemented in the ImplementsStatement.
**ExtendedAttribute.attribute**
The ExtendedAttribute sub-type Production of an ExtendedAttribute. See below. Each of the below ExtendedAttribute sub-type also has an '.attribute' attribute designating the first identifier in the ExtendedAttribute. ExtendedAttributes other than Constructor or LegacyFactoryFunction types will also contain this identifier in the '.name' attribute.
**ExtendedAttributeArgList.arguments.**
Contains a list of any arguments present or 'None'.
**ExtendedAttributeIdent.value**
Contains a string of the identifier present after the "=".
**ExtendedAttributeNamedArgList.value**
Contains a string of the identifier present after the "=".
**ExtendedAttributeNamedArgList.arguments**
Contains a list of any arguments present or 'None'.
**ExtendedAttributeTypePair.key_type**
The first Type Production of the pair.
**ExtendedAttributeTypePair.value_type**
The second Type Production of the pair.
**ExtendedAttributeUnknown.tokens**
Contains a list of tokens in ExtendedAttributes not matching one of the five basic types.
**SyntaxError.tokens**
Contains a list of tokens that did not match the WebIDL grammar.
Markup
------
When calling the parser's 'markup(marker)' method, the passed 'marker' is an object that will get called to help generate the markup for each construct, several productions, and to encode the raw text.
Markup and encode calls will happen in source order, the text will be split at markup boundaries.
The markup methods will be passed the plain text content of the construct or primitive and the construct object in question.
Each method must return a tuple of two values (string or None), the prefix and suffix to be injected into the resultant markup surrounding the construct or production.
Implementation of all markup methods are optional.
**markup_construct(text, construct)**
Will be called for each construct.
**markup_name(text, construct)**
Will be called once per construct with the name of the construct.
**markup_type(text, construct)**
Will be called for each Type prododuction. Note that types may be nested e.g. unions, sequences, etc.
**markup_primitive_type(text, construct)**
Will be called for each PrimitiveType production within a Type, e.g. "unsigned long long", "float", "boolean", etc.
**markup_buffer_type(text, construct)**
Will be called for each BufferRelatedType production witin a Type, e.g. "ArrayBuffer", "DataView", "Int8Array", etc.
**markup_string_type(text, construct)**
Will be called for each StringType production within a Type, e.g. "ByteString", "DOMString", or "USVString".
**markup_object_type(text, construct)**
Will be called for each ObjectType production within a Type, e.g. "object" or "Error".
**markup_type_name(text, construct)**
Will be called when user defined type names are referenced.
**markup_keyword(text, construct)**
Will be called for each keyword.
**markup_enum_value(text, construct)**
Will be called for each value in an enum declaration.
**encode(text)**
Will be called to encode each text run.
Notes
-----
The parser itself is iterable and indexable. Top-level constructs can be tested by the 'in' operator and retrieved by name or index via []. The str() function can also be used on the parser to re-serialize the parsed WebIDL. The serialized output is nullipotent, i.e. str(parser.Parser(text)) == text
Constructs are also iterable and indexable to access members. Additionally constructs can be re-serialized as valid WebIDL via the str() function.
All other WebIDL input is stored in the various constructs as Production objects. Refer to the productions.py source file for details. Productions can be re-serialized as their source WebIDL via the str() function.
Raw data
{
"_id": null,
"home_page": null,
"name": "widlparser",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "config",
"author": null,
"author_email": "Peter Linss <pypi@linss.com>",
"download_url": "https://files.pythonhosted.org/packages/88/99/62ce8bd21efcc772915811ffb2e3858fd17ccbed79e65989724e2a41c2a5/widlparser-1.4.0.tar.gz",
"platform": null,
"description": "widlparser\n==========\n\nStand-alone WebIDL Parser in Python. Requires Python 3.9+.\n\nParses WebIDL per: http://dev.w3.org/2006/webapi/WebIDL/ (plus a few legacy compatability items)\n\nThis parser was created to support a W3C specification parser and pre-processor, it's API is geared towards finding and identifying various WebIDL constructs by name. However, all of the WebIDL source is parsed and stored in the construct objects. The parser has error recovery and preserves the entire input for re-serialization and markup of the WebIDL constructs.\n\n\nInstallation\n------------\n\nStandard python package installation:\n\n pip install widlparser\n\n\nUsage\n-----\n\nImport the widlparser package and instantiate a Parser.\n\n import widlparser\n\n widl = widlparser.Parser()\n\nEither pass the WebIDL text to be parsed in the constructor or call the **Parser.parse(text)** method.\n\n\nParser class\n------------\n**class Parser([text[, ui]])**\n\nThe Parser's constructor takes two optional arguments, text and ui. If present, text is a string containing the WebIDL text to parse. ui.warn() will get called with any syntax errors encountered during parsing (if implemented). ui.note() will get called for any legacy WebIDL that was ignored during parsing (if implemented).\n\n**Parser.constructs**\n\nAll top-level WebIDL constructs are stored in source order in the 'constructs' attribute.\n\n**Parser.complexity_factor**\n\nAn index of the relative complexity of the Constructs defined in the parsed WebIDL. Useful as an index for specification test coverage\n\n**Parser.parse(text)**\n\nParse additional WebIDL text. All parsed constructs will be appended to the 'constructs' attribute.\n\n**Parser.reset()**\n\nClears all stored constructs.\n\n**Parser.find(name)**\n\nReturn a named construct. If a single name is provided, a breadth-first search through all parsed constructs is performed. Alternatively, a path (names separated by \"/\" or \".\") may be passed to target the search more narrowly. e.g.: find(\"Foo/bar/baz\") looks for an Attribute 'baz', inside a Method 'bar', inside an Interface 'Foo'.\n\n**Parser.find_all(name)**\n\nReturn a list of named constructs. Accepts the same search paths as Parser.find(name).\n\n**Parser.normalized_method_name(name [, interface_name=None])**\n\nProvide a normalized version of a method name, including the names of all arguments, e.g. \"drawCircle(long x, long y, long radius)\" becomes: \"drawCircle(x, y, radius)\". If a valid set of arguments is passed, the passed argument names will be returned in the normalized form. Otherwise, a search is performed for a matching previously parsed method name. The search may be narrowed to a particular interface by passing the name fo the interface or callbak in interface_name.\n\n**Parser.normalized_method_names(name [, interface_name=None])**\n\nReturn a list of all possible normalized names for the method. If the method has optional arguments, the list will contain all possible argument variants. The first item in the list will always be the value returned from normalized_method_name.\n\n**Parser.markup(marker)**\n\nReturns a marked-up version of the WebIDL input text. The passed 'marker' object will get called back to markup individual elements of the WebIDL. See the Markup section for mroe detail.\n\n\nConstructs\n----------\nAll Constructs accessed from the parser's Parser.constructs attribute or returned from the parser's find() method are subclasses of the Construct class. The base class provides the following:\n\n**Construct.name**\n\nThe name of the construct.\n\n**Construct.idl_type**\n\nContains a string indicating the type of the construct. Possible values are: \"const\", \"enum\", \"typedef\", \"interface\", \"constructor\", \"attribute\", \"iterable\", \"maplike\", \"setlike\", \"stringifier\", \"serializer\", \"method\", \"argument\", \"dictionary\", \"dict-member\", \"callback\", \"implements\", \"extended-attribute\", and \"unknown\".\n\n**Construct.full_name**\n\nThe name of the construct and all of its parents in path form, e.g.: 'Interface/method_name(argument)/argument'.\n\n**Construct.method_name**\n\nFor 'method' Constructs, contains the normalized method name, otherwise None.\n\n**Construct.method_names**\n\nFor 'method' Constructs, contains the list of all possible normalized method names, otherwise None. Methods have multiple possible normalized names if they contain optional arguments or are variadic.\n\n**Construct.normal_name**\n\nFor 'method' Constructs, contains the normalized method name, otherwise the name of the construct.\n\n**Construct.parent**\n\nThe parent construct, if it has one. Throws a KeyError if it is a top-level Construct in the source WebIDL.\n\n**Construct.has_parent**\n\nA bool specifying whether the construct has a parent or not (and thus whether `.parent` will throw or not when accessed.)\n\n**Construct.extended_attributes**\n\nA list of extended attributes, or None. Extended attributes are stored as Constructs, those of the forms: 'identifier', 'identifier=identifier', 'identifier(ArgumentList)', 'identifier=identifier(ArgumentList)', or 'identifier(Type,Type)' are parsed. The first identifier is stored in 'Construct.attribute', the second, if present, is stored in 'Construct.name', arguments are stored in 'Construct.arguments'. Extended attributes not mathing those five forms contain a list of tokens in 'Construct.tokens' and their name is set to 'None'.\n\n**Construct.constructors**\n\nA list of any extended attributes matching the Constructor or LegacyFactoryFunction form. Any constructors present will be prepended to the 'members' attribute of an 'interface' Construct.\n\n**Construct.complexity_factor**\n\nAn index of the complexity of the construct. See Parser.complexity_factor.\n\n**Construct.find_member(name)**\n\nFind a member of the construct. For 'callback' Constructs with an interface, will search the interface.\n\n**Construct.find_members(name)**\n\nReturn a list of members of the construct matching the name. For 'callback' Constructs with an interface, will search the interface.\n\n**Construct.find_method(name)**\n\nFind a method within the construct.\n\n**Construct.find_methods(name)**\n\nReturn a list of methods within the construct matching the name.\n\n**Construct.find_argument(name[, search_members=True])**\n\nFind an argument within the construct. If 'search_members' is true, all members will be searched as well. This allows distinguishing between arguments of a callback versus arguments of a callback interface's methods.\n\n**Construct.find_arguments(name[, search_members=True])**\n\nReturn a list of arguments within the construct mathcing the name. If 'search_members' is true, all members will be searched as well. This allows distinguishing between arguments of a callback versus arguments of a callback interface's methods.\n\n**Construct.markup(marker)**\n\nReturns a marked-up version of the Constructs's WebIDL source text. See Parser.markup(marker) for information.\n\n\nConstruct Subclasses\n--------------------\nEach Construct will be an instance of a Construct subclass corresponding to its 'Construct.idl_type'. Specific subclasses provide the following additional attributes:\n\n**Const.type**\n\nThe Type Production of the Const.\n\n**Const.value**\n\nThe ConstValue Production of the Const.\n\n**Enum.values**\n\nThe EnumValueList Production of the Enum.\n\n**Typedef.type**\n\nThe Type Production of the Typedef.\n\n**Argument.type**\n\nThe Type Production of the Argument.\n\n**Argument.variadic**\n\nThe Symbol \"variadic\" or 'None'.\n\n**Argument.optional**\n\nThe Symbol \"optional\" or 'None'.\n\n**Argument.default**\n\nThe Default Production of the Argument or 'None'.\n\n**InterfaceMember.member**\n\nOne of the following Constructs or Productions: Const, Serializer, Stringifier, StaticMember, Iterable, Maplike, Setlike, Attribute, SpecialOperation, or Operation.\n\n**InterfaceMember.arguments**\n\nContains a list of any arguments present or 'None'.\n\n**Interface.partial**\n\nThe Symbol \"partial\" or 'None'.\n\n**Interface.inheritance**\n\nThe Inheritance Production of the Interface or 'None'.\n\n**Interface.members**\n\nA list of InterfaceMembers.\n\n**DictionaryMember.type**\n\nThe Type Production of the DictionaryMember.\n\n**DictionaryMember.default**\n\nThe Default Production of the DictionaryMember or 'None'.\n\n**Dictionary.inheritance**\n\nThe Inheritance Production of the Dictionary or 'None'.\n\n**Dictionary.members**\n\nA list of DictionaryMembers.\n\n**Callback.return_type**\n\nThe return Type Production of the Callback.\n\n**Callback.arguments**\n\nContains a list of any arguments present or 'None' for interface callbacks.\n\n**Callback.interface**\n\nThe 'interface' Construct of the callback, or 'None' for function callbacks.\n\n**ImplementsStatement.implements**\n\nA string of the type implemented in the ImplementsStatement.\n\n**ExtendedAttribute.attribute**\n\nThe ExtendedAttribute sub-type Production of an ExtendedAttribute. See below. Each of the below ExtendedAttribute sub-type also has an '.attribute' attribute designating the first identifier in the ExtendedAttribute. ExtendedAttributes other than Constructor or LegacyFactoryFunction types will also contain this identifier in the '.name' attribute.\n\n**ExtendedAttributeArgList.arguments.**\n\nContains a list of any arguments present or 'None'.\n\n**ExtendedAttributeIdent.value**\n\nContains a string of the identifier present after the \"=\".\n\n**ExtendedAttributeNamedArgList.value**\n\nContains a string of the identifier present after the \"=\".\n\n**ExtendedAttributeNamedArgList.arguments**\n\nContains a list of any arguments present or 'None'.\n\n**ExtendedAttributeTypePair.key_type**\n\nThe first Type Production of the pair.\n\n**ExtendedAttributeTypePair.value_type**\n\nThe second Type Production of the pair.\n\n**ExtendedAttributeUnknown.tokens**\n\nContains a list of tokens in ExtendedAttributes not matching one of the five basic types.\n\n**SyntaxError.tokens**\n\nContains a list of tokens that did not match the WebIDL grammar.\n\n\nMarkup\n------\nWhen calling the parser's 'markup(marker)' method, the passed 'marker' is an object that will get called to help generate the markup for each construct, several productions, and to encode the raw text.\nMarkup and encode calls will happen in source order, the text will be split at markup boundaries.\nThe markup methods will be passed the plain text content of the construct or primitive and the construct object in question.\nEach method must return a tuple of two values (string or None), the prefix and suffix to be injected into the resultant markup surrounding the construct or production.\nImplementation of all markup methods are optional.\n\n**markup_construct(text, construct)**\n\nWill be called for each construct.\n\n**markup_name(text, construct)**\n\nWill be called once per construct with the name of the construct.\n\n**markup_type(text, construct)**\n\nWill be called for each Type prododuction. Note that types may be nested e.g. unions, sequences, etc.\n\n**markup_primitive_type(text, construct)**\n\nWill be called for each PrimitiveType production within a Type, e.g. \"unsigned long long\", \"float\", \"boolean\", etc.\n\n**markup_buffer_type(text, construct)**\n\nWill be called for each BufferRelatedType production witin a Type, e.g. \"ArrayBuffer\", \"DataView\", \"Int8Array\", etc.\n\n**markup_string_type(text, construct)**\n\nWill be called for each StringType production within a Type, e.g. \"ByteString\", \"DOMString\", or \"USVString\".\n\n**markup_object_type(text, construct)**\n\nWill be called for each ObjectType production within a Type, e.g. \"object\" or \"Error\".\n\n**markup_type_name(text, construct)**\n\nWill be called when user defined type names are referenced.\n\n**markup_keyword(text, construct)**\n\nWill be called for each keyword.\n\n**markup_enum_value(text, construct)**\n\nWill be called for each value in an enum declaration.\n\n**encode(text)**\n\nWill be called to encode each text run.\n\n\nNotes\n-----\nThe parser itself is iterable and indexable. Top-level constructs can be tested by the 'in' operator and retrieved by name or index via []. The str() function can also be used on the parser to re-serialize the parsed WebIDL. The serialized output is nullipotent, i.e. str(parser.Parser(text)) == text\n\nConstructs are also iterable and indexable to access members. Additionally constructs can be re-serialized as valid WebIDL via the str() function.\n\nAll other WebIDL input is stored in the various constructs as Production objects. Refer to the productions.py source file for details. Productions can be re-serialized as their source WebIDL via the str() function.\n",
"bugtrack_url": null,
"license": "MIT Licence",
"summary": "WebIDL Parser",
"version": "1.4.0",
"project_urls": {
"homepage": "https://gitlab.linss.com/open-source/python/widlparser"
},
"split_keywords": [
"config"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "8011774290de2533045c10017bae63a048a57a3eb252c07b712e17ab09c29fdb",
"md5": "dd1764a8974c488a03c401725863de09",
"sha256": "787bbff7f931db00c75f3b54194a36a7e550a71b3e951bef79bfc9739ad9060c"
},
"downloads": -1,
"filename": "widlparser-1.4.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "dd1764a8974c488a03c401725863de09",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 36060,
"upload_time": "2025-07-18T02:07:28",
"upload_time_iso_8601": "2025-07-18T02:07:28.192244Z",
"url": "https://files.pythonhosted.org/packages/80/11/774290de2533045c10017bae63a048a57a3eb252c07b712e17ab09c29fdb/widlparser-1.4.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "889962ce8bd21efcc772915811ffb2e3858fd17ccbed79e65989724e2a41c2a5",
"md5": "52fc577ccbf488728bcd4916a65db09f",
"sha256": "1b47dd5058323bc7eaf892604220cc82a50906028edde5bbb03f7cf5e5f6f43c"
},
"downloads": -1,
"filename": "widlparser-1.4.0.tar.gz",
"has_sig": false,
"md5_digest": "52fc577ccbf488728bcd4916a65db09f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 50662,
"upload_time": "2025-07-18T02:07:29",
"upload_time_iso_8601": "2025-07-18T02:07:29.344780Z",
"url": "https://files.pythonhosted.org/packages/88/99/62ce8bd21efcc772915811ffb2e3858fd17ccbed79e65989724e2a41c2a5/widlparser-1.4.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-18 02:07:29",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "widlparser"
}