hext


Namehext JSON
Version 1.0.9 PyPI version JSON
download
home_pagehttps://hext.thomastrapp.com/
SummaryA module and command-line utility to extract structured data from HTML
upload_time2024-04-25 11:50:44
maintainerNone
docs_urlNone
authorThomas Trapp
requires_pythonNone
licenseNone
keywords html-extraction scraping html data-extraction
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Hext — Extract Data from HTML

![Hext Logo](https://raw.githubusercontent.com/html-extract/html-extract.github.io/master/hext-logo-x100.png)

Hext is a domain-specific language for extracting structured data from HTML. It can be thought of as a counterpart to templates, which are typically used by web developers to structure content on the web.

## A Quick Example
The following Hext template collects all hyperlinks and extracts the href and the clickable text.
```
<a href:link @text:title />
```
Hext does so by recursively trying to match every HTML element. In the case above, an element is required to have the tag a and an attribute called href. If the element matches, its attribute href and its textual representation are stored as link and title, respectively.

If the above Hext template is applied to this piece of HTML:
```
<body>
  <a href="one.html">  Page 1</a>
  <a href="two.html">  Page 2</a>
  <a href="three.html">Page 3</a>
</body>
```
Hext will produce the following values:
```
{ "link": "one.html",   "title": "Page 1" },
{ "link": "two.html",   "title": "Page 2" },
{ "link": "three.html", "title": "Page 3" }
```
You can use this example in [Hext’s live code editor](https://hext.thomastrapp.com/#anchor-tryit-hext).
Visit [Hext’s documentation](https://hext.thomastrapp.com/documentation) and its section “[How Hext Matches Elements](https://hext.thomastrapp.com/documentation#matching-elements)” for a more thorough explanation.

## Components
This package includes:
* The Hext Python module
* The htmlext command-line utility

### Using Hext with Python
The module exposes three interfaces:
* `html = hext.Html("<html>...</html>")` -> object
* `rule = hext.Rule("...")` -> object
* `rule.extract(html)` -> dictionary of {string -> string}
* `rule.extract` has a second optional parameter `max_searches` which is of type unsigned int. The search for matching elements is aborted after this limit is reached. The default is 0, which never aborts.
```
import hext
import requests
import json

res = requests.get('https://news.ycombinator.com/')
res.raise_for_status()

# hext.Html's constructor expects a single argument
# containing an UTF-8 encoded string of HTML.
html = hext.Html(res.text)

# hext.Rule's constructor expects a single argument
# containing a Hext template.
# Throws an exception of type ValueError on invalid syntax.
rule = hext.Rule("""
<tr>
  <td><span @text:rank /></td>
  <td><a href:href @text:title /></td>
</tr>
<?tr>
  <td>
    <span @text:score />
    <a @text:user />
    <a:last-child @text:filter(/\d+/):comment_count />
  </td>
</tr>""")

# hext.Rule.extract expects an argument of type hext.Html.
# Returns a list of dictionaries.
result = rule.extract(html)

# Print each dictionary as JSON
for map in result:
    print(json.dumps(map, ensure_ascii=False,
                          separators=(',',':')))
```

### Using Hext on the Command Line
Hext ships with a command line utility called htmlext, which applies Hext templates to HTML documents and outputs JSON.
```
htmlext - Extract structured content from HTML.

Usage:
  htmlext [options] <hext-file> <html-file...>
      Apply extraction rules from <hext-file> to each
      <html-file> and print the captured content as JSON.

Options:
  -x [ --hext ] <file>  Add Hext from file
  -i [ --html ] <file>  Add HTML from file
  -s [ --str ] <string> Add Hext from string
  -c [ --compact ]      Print one JSON object per line
  -p [ --pretty ]       Pretty-print JSON
  -a [ --array ]        Wrap results in a JSON array
  -f [ --filter ] <key> Print values whose name matches <key>
  -l [ --lint ]         Do Hext syntax check
  -h [ --help ]         Print this help message
  -V [ --version ]      Print info and version
```
Ever wanted to watch the submissions on /r/videos in vlc? Well, take a look at this little guy right here:
```
htmlext \
  -i <(wget -O- -o/dev/null "https://old.reddit.com/r/videos/") \
  -s '<a class="title" href:x />' \
  -f x \
  | xargs vlc
```

## License
[Hext](https://hext.thomastrapp.com/) is released under the terms of the Apache License v2.0. The source code is hosted on [Github](https://github.com/html-extract/hext.git).
This binary package includes content authored by third parties:
* [gumbo-parser](https://github.com/google/gumbo-parser). Copyright 2010 Google Inc. See gumbo.license.
* [rapidjson](http://rapidjson.org/). Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. See rapidjson.license.


            

Raw data

            {
    "_id": null,
    "home_page": "https://hext.thomastrapp.com/",
    "name": "hext",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "html-extraction scraping html data-extraction",
    "author": "Thomas Trapp",
    "author_email": "hext@thomastrapp.com",
    "download_url": null,
    "platform": null,
    "description": "# Hext \u2014 Extract Data from HTML\n\n![Hext Logo](https://raw.githubusercontent.com/html-extract/html-extract.github.io/master/hext-logo-x100.png)\n\nHext is a domain-specific language for extracting structured data from HTML. It can be thought of as a counterpart to templates, which are typically used by web developers to structure content on the web.\n\n## A Quick Example\nThe following Hext template collects all hyperlinks and extracts the href and the clickable text.\n```\n<a href:link @text:title />\n```\nHext does so by recursively trying to match every HTML element. In the case above, an element is required to have the tag a and an attribute called href. If the element matches, its attribute href and its textual representation are stored as link and title, respectively.\n\nIf the above Hext template is applied to this piece of HTML:\n```\n<body>\n  <a href=\"one.html\">  Page 1</a>\n  <a href=\"two.html\">  Page 2</a>\n  <a href=\"three.html\">Page 3</a>\n</body>\n```\nHext will produce the following values:\n```\n{ \"link\": \"one.html\",   \"title\": \"Page 1\" },\n{ \"link\": \"two.html\",   \"title\": \"Page 2\" },\n{ \"link\": \"three.html\", \"title\": \"Page 3\" }\n```\nYou can use this example in [Hext\u2019s live code editor](https://hext.thomastrapp.com/#anchor-tryit-hext).\nVisit [Hext\u2019s documentation](https://hext.thomastrapp.com/documentation) and its section \u201c[How Hext Matches Elements](https://hext.thomastrapp.com/documentation#matching-elements)\u201d for a more thorough explanation.\n\n## Components\nThis package includes:\n* The Hext Python module\n* The htmlext command-line utility\n\n### Using Hext with Python\nThe module exposes three interfaces:\n* `html = hext.Html(\"<html>...</html>\")` -> object\n* `rule = hext.Rule(\"...\")` -> object\n* `rule.extract(html)` -> dictionary of {string -> string}\n* `rule.extract` has a second optional parameter `max_searches` which is of type unsigned int. The search for matching elements is aborted after this limit is reached. The default is 0, which never aborts.\n```\nimport hext\nimport requests\nimport json\n\nres = requests.get('https://news.ycombinator.com/')\nres.raise_for_status()\n\n# hext.Html's constructor expects a single argument\n# containing an UTF-8 encoded string of HTML.\nhtml = hext.Html(res.text)\n\n# hext.Rule's constructor expects a single argument\n# containing a Hext template.\n# Throws an exception of type ValueError on invalid syntax.\nrule = hext.Rule(\"\"\"\n<tr>\n  <td><span @text:rank /></td>\n  <td><a href:href @text:title /></td>\n</tr>\n<?tr>\n  <td>\n    <span @text:score />\n    <a @text:user />\n    <a:last-child @text:filter(/\\d+/):comment_count />\n  </td>\n</tr>\"\"\")\n\n# hext.Rule.extract expects an argument of type hext.Html.\n# Returns a list of dictionaries.\nresult = rule.extract(html)\n\n# Print each dictionary as JSON\nfor map in result:\n    print(json.dumps(map, ensure_ascii=False,\n                          separators=(',',':')))\n```\n\n### Using Hext on the Command Line\nHext ships with a command line utility called htmlext, which applies Hext templates to HTML documents and outputs JSON.\n```\nhtmlext - Extract structured content from HTML.\n\nUsage:\n  htmlext [options] <hext-file> <html-file...>\n      Apply extraction rules from <hext-file> to each\n      <html-file> and print the captured content as JSON.\n\nOptions:\n  -x [ --hext ] <file>  Add Hext from file\n  -i [ --html ] <file>  Add HTML from file\n  -s [ --str ] <string> Add Hext from string\n  -c [ --compact ]      Print one JSON object per line\n  -p [ --pretty ]       Pretty-print JSON\n  -a [ --array ]        Wrap results in a JSON array\n  -f [ --filter ] <key> Print values whose name matches <key>\n  -l [ --lint ]         Do Hext syntax check\n  -h [ --help ]         Print this help message\n  -V [ --version ]      Print info and version\n```\nEver wanted to watch the submissions on /r/videos in vlc? Well, take a look at this little guy right here:\n```\nhtmlext \\\n  -i <(wget -O- -o/dev/null \"https://old.reddit.com/r/videos/\") \\\n  -s '<a class=\"title\" href:x />' \\\n  -f x \\\n  | xargs vlc\n```\n\n## License\n[Hext](https://hext.thomastrapp.com/) is released under the terms of the Apache License v2.0. The source code is hosted on [Github](https://github.com/html-extract/hext.git).\nThis binary package includes content authored by third parties:\n* [gumbo-parser](https://github.com/google/gumbo-parser). Copyright 2010 Google Inc. See gumbo.license.\n* [rapidjson](http://rapidjson.org/). Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. See rapidjson.license.\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A module and command-line utility to extract structured data from HTML",
    "version": "1.0.9",
    "project_urls": {
        "Author": "https://thomastrapp.com/",
        "Bug Reports": "https://github.com/html-extract/hext/issues",
        "Github": "https://github.com/html-extract/hext/",
        "Homepage": "https://hext.thomastrapp.com/"
    },
    "split_keywords": [
        "html-extraction",
        "scraping",
        "html",
        "data-extraction"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b297648eceb9f77f87844d76c984457fbedbaa7f2a455d3f53071bdf847604d",
                "md5": "43f7409240fa1c198d388c8c874105b2",
                "sha256": "6757dabc270d847309ea99135767768e40fb90ae82bcff395701c78ad1503aa8"
            },
            "downloads": -1,
            "filename": "hext-1.0.9-cp310-cp310-macosx_10_11_x86_64.whl",
            "has_sig": false,
            "md5_digest": "43f7409240fa1c198d388c8c874105b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 736190,
            "upload_time": "2024-04-25T11:50:44",
            "upload_time_iso_8601": "2024-04-25T11:50:44.278971Z",
            "url": "https://files.pythonhosted.org/packages/9b/29/7648eceb9f77f87844d76c984457fbedbaa7f2a455d3f53071bdf847604d/hext-1.0.9-cp310-cp310-macosx_10_11_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8199c407006ab31d38c0bd3d24a8c45672826627413b7587617b92e41aade29d",
                "md5": "0e7d29e9d1ff99964f4457529ca2c08b",
                "sha256": "ea20f72706ae0a632a75a5b06d384cd7bf019930503a946472e604c2af0680af"
            },
            "downloads": -1,
            "filename": "hext-1.0.9-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0e7d29e9d1ff99964f4457529ca2c08b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 688329,
            "upload_time": "2024-04-25T11:50:47",
            "upload_time_iso_8601": "2024-04-25T11:50:47.079497Z",
            "url": "https://files.pythonhosted.org/packages/81/99/c407006ab31d38c0bd3d24a8c45672826627413b7587617b92e41aade29d/hext-1.0.9-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a0204c0665928d57a431d16db54d7b5f6bd0c0a545e54e17daf75c150cf3e87",
                "md5": "1ecbeefaf38690d9a8ebcd5e1c02d368",
                "sha256": "a52db848acaa9c8e1f069ba9fe57fafd3c46d7ba68b593f64b76329b402b867f"
            },
            "downloads": -1,
            "filename": "hext-1.0.9-cp310-cp310-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ecbeefaf38690d9a8ebcd5e1c02d368",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1614723,
            "upload_time": "2024-04-25T11:50:49",
            "upload_time_iso_8601": "2024-04-25T11:50:49.641430Z",
            "url": "https://files.pythonhosted.org/packages/6a/02/04c0665928d57a431d16db54d7b5f6bd0c0a545e54e17daf75c150cf3e87/hext-1.0.9-cp310-cp310-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78f5cf429860448fc052d2326c5f4652c7e1161255b9d8a8bade22db301fe7b5",
                "md5": "8cf8c93a4a7c71ff740b94fbdde8d7ca",
                "sha256": "dbaf63a55bd68728a108aa5be9d00d7761840bd449e27aa1dcb8a98b0ae2dc81"
            },
            "downloads": -1,
            "filename": "hext-1.0.9-cp311-cp311-macosx_10_11_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8cf8c93a4a7c71ff740b94fbdde8d7ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 736194,
            "upload_time": "2024-04-25T11:50:51",
            "upload_time_iso_8601": "2024-04-25T11:50:51.836171Z",
            "url": "https://files.pythonhosted.org/packages/78/f5/cf429860448fc052d2326c5f4652c7e1161255b9d8a8bade22db301fe7b5/hext-1.0.9-cp311-cp311-macosx_10_11_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a5bdbf3c74ef759d7197f69f0d6cb2d4ad2a7b6780cafe5619eca3bdff40cff",
                "md5": "96865234f770fd569b6a4da32629ee34",
                "sha256": "3422682b1e3de47ce8ed7067ec69d23be1ae03d1c9295199f451b8e27dd2c16d"
            },
            "downloads": -1,
            "filename": "hext-1.0.9-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "96865234f770fd569b6a4da32629ee34",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 688328,
            "upload_time": "2024-04-25T11:50:55",
            "upload_time_iso_8601": "2024-04-25T11:50:55.366334Z",
            "url": "https://files.pythonhosted.org/packages/3a/5b/dbf3c74ef759d7197f69f0d6cb2d4ad2a7b6780cafe5619eca3bdff40cff/hext-1.0.9-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8331a8f81573d4c72af529b2e4a518eb93a39ecedd5de6c803550a284a1fc06b",
                "md5": "e5feb682e84bd1f1d3c53d3b8d738cfe",
                "sha256": "2ba03d9ff14c7f074336f43442f79bb682e67055b5f0c0b2832362bfbe5f774f"
            },
            "downloads": -1,
            "filename": "hext-1.0.9-cp311-cp311-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5feb682e84bd1f1d3c53d3b8d738cfe",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1614733,
            "upload_time": "2024-04-25T11:50:58",
            "upload_time_iso_8601": "2024-04-25T11:50:58.292761Z",
            "url": "https://files.pythonhosted.org/packages/83/31/a8f81573d4c72af529b2e4a518eb93a39ecedd5de6c803550a284a1fc06b/hext-1.0.9-cp311-cp311-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "723dc83dda336672d04d205db788a1fae9a525dbb384b7f0ea49d96571c52685",
                "md5": "64cf3d54397d7b0d7852479eaeae9e12",
                "sha256": "993b72c8a3a63bb23cb9e582a0a5eaa09d27adf34fd7f440862bde4a8b2e1b61"
            },
            "downloads": -1,
            "filename": "hext-1.0.9-cp312-cp312-macosx_10_11_x86_64.whl",
            "has_sig": false,
            "md5_digest": "64cf3d54397d7b0d7852479eaeae9e12",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 736637,
            "upload_time": "2024-04-25T11:50:59",
            "upload_time_iso_8601": "2024-04-25T11:50:59.857050Z",
            "url": "https://files.pythonhosted.org/packages/72/3d/c83dda336672d04d205db788a1fae9a525dbb384b7f0ea49d96571c52685/hext-1.0.9-cp312-cp312-macosx_10_11_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49ce47fe6f361f9e313e72379aa36f6f80d4635e75b3a5ae7b91ebd131c997d2",
                "md5": "4fb15d1f9d7936da37eb3b306dcde72e",
                "sha256": "8daccfafabf5a448abb678ec6376a9c91338bf98b9280e49a231fe8ff0d94384"
            },
            "downloads": -1,
            "filename": "hext-1.0.9-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4fb15d1f9d7936da37eb3b306dcde72e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 688367,
            "upload_time": "2024-04-25T11:51:02",
            "upload_time_iso_8601": "2024-04-25T11:51:02.381163Z",
            "url": "https://files.pythonhosted.org/packages/49/ce/47fe6f361f9e313e72379aa36f6f80d4635e75b3a5ae7b91ebd131c997d2/hext-1.0.9-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d282183884bf7dde64ed31dba250b4bd34b2cb47ca26acc8ca5b9170a52fb68c",
                "md5": "a6d73a8b233d8f2d2789841f29b147e4",
                "sha256": "616dc27e78697b8324aca18f5d19f978cf049e9f76091d72daff9cb1d7015fb5"
            },
            "downloads": -1,
            "filename": "hext-1.0.9-cp312-cp312-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6d73a8b233d8f2d2789841f29b147e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1614790,
            "upload_time": "2024-04-25T11:51:04",
            "upload_time_iso_8601": "2024-04-25T11:51:04.316788Z",
            "url": "https://files.pythonhosted.org/packages/d2/82/183884bf7dde64ed31dba250b4bd34b2cb47ca26acc8ca5b9170a52fb68c/hext-1.0.9-cp312-cp312-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35e26c3774996a756b40beae844e68170e75f3e0a49718f5b1b32856ce27c679",
                "md5": "b2c816a0835a8114e46f06c3e99d87b4",
                "sha256": "05d980fc616cc090a46d64b3a8f8e84ac7ea96b81cea33715b7527c54b01063d"
            },
            "downloads": -1,
            "filename": "hext-1.0.9-cp36-cp36m-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b2c816a0835a8114e46f06c3e99d87b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1614295,
            "upload_time": "2024-04-25T11:51:06",
            "upload_time_iso_8601": "2024-04-25T11:51:06.166309Z",
            "url": "https://files.pythonhosted.org/packages/35/e2/6c3774996a756b40beae844e68170e75f3e0a49718f5b1b32856ce27c679/hext-1.0.9-cp36-cp36m-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f4bcfb5e15fcbe5027f274c3884d30230899af8e2f62f925cc9b48c30526e51",
                "md5": "7afade79e8dcda326effd0e912fcb37c",
                "sha256": "91acc921d032220b60ab988ce8f9966e05c332587f886411a7667c0724afbd69"
            },
            "downloads": -1,
            "filename": "hext-1.0.9-cp37-cp37m-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7afade79e8dcda326effd0e912fcb37c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1614163,
            "upload_time": "2024-04-25T11:51:08",
            "upload_time_iso_8601": "2024-04-25T11:51:08.019073Z",
            "url": "https://files.pythonhosted.org/packages/7f/4b/cfb5e15fcbe5027f274c3884d30230899af8e2f62f925cc9b48c30526e51/hext-1.0.9-cp37-cp37m-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80c2b5ee1bc72aeee122b043a0e1f37690956bb3574538031f660a2670c9eb37",
                "md5": "11d773c5bce6b19f4ce77714f3df0a97",
                "sha256": "d28b8ae636427d99ad683e6e11d711efb53ef2dd503c706f40884154f34d9d03"
            },
            "downloads": -1,
            "filename": "hext-1.0.9-cp38-cp38-macosx_10_11_x86_64.whl",
            "has_sig": false,
            "md5_digest": "11d773c5bce6b19f4ce77714f3df0a97",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 736195,
            "upload_time": "2024-04-25T11:51:10",
            "upload_time_iso_8601": "2024-04-25T11:51:10.208323Z",
            "url": "https://files.pythonhosted.org/packages/80/c2/b5ee1bc72aeee122b043a0e1f37690956bb3574538031f660a2670c9eb37/hext-1.0.9-cp38-cp38-macosx_10_11_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3b702ac314059ed43059b5998a0a3cc8e1801406a3abcc330111f9f03b79136",
                "md5": "358ba98843b62ab3e3da37a0434bde98",
                "sha256": "39c62968029248bc29c76b859cff468c86c95fd80a7c38e2832dc7fef6266cb5"
            },
            "downloads": -1,
            "filename": "hext-1.0.9-cp38-cp38-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "358ba98843b62ab3e3da37a0434bde98",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1614684,
            "upload_time": "2024-04-25T11:51:11",
            "upload_time_iso_8601": "2024-04-25T11:51:11.889790Z",
            "url": "https://files.pythonhosted.org/packages/d3/b7/02ac314059ed43059b5998a0a3cc8e1801406a3abcc330111f9f03b79136/hext-1.0.9-cp38-cp38-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9cd7822da18bed86175a5e90a6b8f554439e2abd8d31bd1a06f4a14b0246e8e7",
                "md5": "c499ef5d5cc15dde62f992c5adcc1adb",
                "sha256": "f0751d53f032f64b3b3765e512ba8aab5a10bc520d660264c9dc101610c48a0c"
            },
            "downloads": -1,
            "filename": "hext-1.0.9-cp39-cp39-macosx_10_11_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c499ef5d5cc15dde62f992c5adcc1adb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 736192,
            "upload_time": "2024-04-25T11:51:14",
            "upload_time_iso_8601": "2024-04-25T11:51:14.145148Z",
            "url": "https://files.pythonhosted.org/packages/9c/d7/822da18bed86175a5e90a6b8f554439e2abd8d31bd1a06f4a14b0246e8e7/hext-1.0.9-cp39-cp39-macosx_10_11_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "271fd35988d622ffca2e07480eebed45013ccef4c6d0aa90a7a5c88a8c961d2a",
                "md5": "e495feaefd2e3d31de456aff3a8b3d7d",
                "sha256": "13993b3b7bf998eabf06aefac45ed53e7bca32a53e1f93bfb073392ff2878aa1"
            },
            "downloads": -1,
            "filename": "hext-1.0.9-cp39-cp39-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e495feaefd2e3d31de456aff3a8b3d7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1614737,
            "upload_time": "2024-04-25T11:51:15",
            "upload_time_iso_8601": "2024-04-25T11:51:15.887411Z",
            "url": "https://files.pythonhosted.org/packages/27/1f/d35988d622ffca2e07480eebed45013ccef4c6d0aa90a7a5c88a8c961d2a/hext-1.0.9-cp39-cp39-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-25 11:50:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "html-extract",
    "github_project": "hext",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "hext"
}
        
Elapsed time: 0.24381s