pydomdisco


Namepydomdisco JSON
Version 0.4.3 PyPI version JSON
download
home_pagehttps://github.com/intsights/pydomdisco
SummaryA fast async domain discovery tool written in Rust
upload_time2023-12-21 15:42:47
maintainerNone
docs_urlNone
authorGal Ben David
requires_python>=3.7
licenseMIT License Copyright (c) 2021 Intsights Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords domain discovery dns authoritative resolver rust async pyo3
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
    <a href="https://github.com/intsights/pydomdisco">
        <img src="https://raw.githubusercontent.com/intsights/pydomdisco/master/images/logo.png" alt="Logo">
    </a>
    <h3 align="center">
        A fast async domain discovery tool written in Rust
    </h3>
</p>


![license](https://img.shields.io/badge/MIT-License-blue)
![Python](https://img.shields.io/badge/Python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue)
![OS](https://img.shields.io/badge/OS-Mac%20%7C%20Linux%20%7C%20Windows-blue)
![Build](https://github.com/intsights/pydomdisco/workflows/Build/badge.svg)
[![PyPi](https://img.shields.io/pypi/v/pydomdisco.svg)](https://pypi.org/project/pydomdisco/)

## Table of Contents

- [Table of Contents](#table-of-contents)
- [About The Project](#about-the-project)
  - [Built With](#built-with)
  - [Installation](#installation)
- [Usage](#usage)
- [License](#license)
- [Contact](#contact)


## About The Project

This library is intended to be used to discover registered domains according to the given TLD list by performing a fast and accurate resolving process. It was written in Rust in order to meet the performance requirements.


### Built With

* [pyo3](https://github.com/PyO3/pyo3)
* [tokio](https://github.com/tokio-rs/tokio)
* [trust-dns](https://github.com/bluejekyll/trust-dns)


### Installation

```sh
pip3 install pydomdisco
```


## Usage

```python
import pydomdisco


# Get a list of tlds to their corresponding nameservers IP addressed

# Only root tlds
root = pydomdisco.Discoverer.get_root_tld_to_nameservers_ips()

# Full list of the PSL tlds
psl = pydomdisco.Discoverer.get_psl_tld_to_nameservers_ips()

# Initialize the discovery engine loaded with the given tlds
discoverer = pydomdisco.Discoverer(root | psl)

# Perform the discovery process and return the list of discovered registered domains
registered_domains = discoverer.discover(
    [
        'google',
        'microsoft',
        'tesla',
    ],
)
```


## License

Distributed under the MIT License. See `LICENSE` for more information.


## Contact

Gal Ben David - gal@intsights.com

Project Link: [https://github.com/intsights/pydomdisco](https://github.com/intsights/pydomdisco)


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/intsights/pydomdisco",
    "name": "pydomdisco",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "domain,discovery,dns,authoritative,resolver,rust,async,pyo3",
    "author": "Gal Ben David",
    "author_email": "gal@intsights.com",
    "download_url": null,
    "platform": null,
    "description": "<p align=\"center\">\n    <a href=\"https://github.com/intsights/pydomdisco\">\n        <img src=\"https://raw.githubusercontent.com/intsights/pydomdisco/master/images/logo.png\" alt=\"Logo\">\n    </a>\n    <h3 align=\"center\">\n        A fast async domain discovery tool written in Rust\n    </h3>\n</p>\n\n\n![license](https://img.shields.io/badge/MIT-License-blue)\n![Python](https://img.shields.io/badge/Python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue)\n![OS](https://img.shields.io/badge/OS-Mac%20%7C%20Linux%20%7C%20Windows-blue)\n![Build](https://github.com/intsights/pydomdisco/workflows/Build/badge.svg)\n[![PyPi](https://img.shields.io/pypi/v/pydomdisco.svg)](https://pypi.org/project/pydomdisco/)\n\n## Table of Contents\n\n- [Table of Contents](#table-of-contents)\n- [About The Project](#about-the-project)\n  - [Built With](#built-with)\n  - [Installation](#installation)\n- [Usage](#usage)\n- [License](#license)\n- [Contact](#contact)\n\n\n## About The Project\n\nThis library is intended to be used to discover registered domains according to the given TLD list by performing a fast and accurate resolving process. It was written in Rust in order to meet the performance requirements.\n\n\n### Built With\n\n* [pyo3](https://github.com/PyO3/pyo3)\n* [tokio](https://github.com/tokio-rs/tokio)\n* [trust-dns](https://github.com/bluejekyll/trust-dns)\n\n\n### Installation\n\n```sh\npip3 install pydomdisco\n```\n\n\n## Usage\n\n```python\nimport pydomdisco\n\n\n# Get a list of tlds to their corresponding nameservers IP addressed\n\n# Only root tlds\nroot = pydomdisco.Discoverer.get_root_tld_to_nameservers_ips()\n\n# Full list of the PSL tlds\npsl = pydomdisco.Discoverer.get_psl_tld_to_nameservers_ips()\n\n# Initialize the discovery engine loaded with the given tlds\ndiscoverer = pydomdisco.Discoverer(root | psl)\n\n# Perform the discovery process and return the list of discovered registered domains\nregistered_domains = discoverer.discover(\n    [\n        'google',\n        'microsoft',\n        'tesla',\n    ],\n)\n```\n\n\n## License\n\nDistributed under the MIT License. See `LICENSE` for more information.\n\n\n## Contact\n\nGal Ben David - gal@intsights.com\n\nProject Link: [https://github.com/intsights/pydomdisco](https://github.com/intsights/pydomdisco)\n\n",
    "bugtrack_url": null,
    "license": "MIT License\r\n\t\r\n\tCopyright (c) 2021 Intsights\r\n\t\r\n\tPermission is hereby granted, free of charge, to any person obtaining a copy\r\n\tof this software and associated documentation files (the \"Software\"), to deal\r\n\tin the Software without restriction, including without limitation the rights\r\n\tto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n\tcopies of the Software, and to permit persons to whom the Software is\r\n\tfurnished to do so, subject to the following conditions:\r\n\t\r\n\tThe above copyright notice and this permission notice shall be included in all\r\n\tcopies or substantial portions of the Software.\r\n\t\r\n\tTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n\tIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n\tFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n\tAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n\tLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n\tOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n\tSOFTWARE.\r\n\t",
    "summary": "A fast async domain discovery tool written in Rust",
    "version": "0.4.3",
    "project_urls": {
        "Homepage": "https://github.com/intsights/pydomdisco",
        "Source Code": "https://github.com/intsights/pydomdisco"
    },
    "split_keywords": [
        "domain",
        "discovery",
        "dns",
        "authoritative",
        "resolver",
        "rust",
        "async",
        "pyo3"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d8bacde7a58f369f7ba66d83d03c3c2fa3fd191b26a705329cf0c502cdc4883c",
                "md5": "d128061566905fac8ec1fc3e39b2be1d",
                "sha256": "581e307e79d254292a99f40bd8d63d706054281210b962a39f5107fd5d6da053"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp310-cp310-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d128061566905fac8ec1fc3e39b2be1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 979802,
            "upload_time": "2023-12-21T15:42:47",
            "upload_time_iso_8601": "2023-12-21T15:42:47.131563Z",
            "url": "https://files.pythonhosted.org/packages/d8/ba/cde7a58f369f7ba66d83d03c3c2fa3fd191b26a705329cf0c502cdc4883c/pydomdisco-0.4.3-cp310-cp310-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b522d161a770ae343e6c5455c4f62a45e5e4905a8f7b42770c8d182981fec1a",
                "md5": "3623c415917a108f78ef5a2145a22234",
                "sha256": "aed4835050e2ab6df46f0af80150c566fb266d4bf2ff6405f1f7bee943a470d3"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3623c415917a108f78ef5a2145a22234",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 960700,
            "upload_time": "2023-12-21T15:44:00",
            "upload_time_iso_8601": "2023-12-21T15:44:00.651828Z",
            "url": "https://files.pythonhosted.org/packages/2b/52/2d161a770ae343e6c5455c4f62a45e5e4905a8f7b42770c8d182981fec1a/pydomdisco-0.4.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0958351d8c4bf5c0b4f16bee6ea0b98c152672c10dc183a3bbaaf7dab6deefa1",
                "md5": "06de1cd6e6f7c4835dcba3f61faa24ca",
                "sha256": "5c12d8b06a08f6a2daedafffb9fee847642662e0b1ad537f3f5c90cd9f905001"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "06de1cd6e6f7c4835dcba3f61faa24ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1058070,
            "upload_time": "2023-12-21T15:41:37",
            "upload_time_iso_8601": "2023-12-21T15:41:37.473905Z",
            "url": "https://files.pythonhosted.org/packages/09/58/351d8c4bf5c0b4f16bee6ea0b98c152672c10dc183a3bbaaf7dab6deefa1/pydomdisco-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d634425092d761060614313e967909b7fd031d95e0fc282f39064391cdd69a76",
                "md5": "b94d65a6ac3e7dd5bcbdbf9214bd560e",
                "sha256": "4855856a5c864af4ca0287c6014d7aa1536d5c19a088b03780b2cd4a756aba3f"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b94d65a6ac3e7dd5bcbdbf9214bd560e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 941462,
            "upload_time": "2023-12-21T15:42:44",
            "upload_time_iso_8601": "2023-12-21T15:42:44.819461Z",
            "url": "https://files.pythonhosted.org/packages/d6/34/425092d761060614313e967909b7fd031d95e0fc282f39064391cdd69a76/pydomdisco-0.4.3-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "655f5547899a60989819ae61a47026140f90d9cc12a4f6411ce6a6b9cef4db4a",
                "md5": "556679a7c23472277c2915a8627c6ade",
                "sha256": "4f7688cea853cac8a68e9ce9eb444c5ffe3c1efd2f08daceb28c0d6a4f607934"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp311-cp311-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "556679a7c23472277c2915a8627c6ade",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 979803,
            "upload_time": "2023-12-21T15:42:52",
            "upload_time_iso_8601": "2023-12-21T15:42:52.296827Z",
            "url": "https://files.pythonhosted.org/packages/65/5f/5547899a60989819ae61a47026140f90d9cc12a4f6411ce6a6b9cef4db4a/pydomdisco-0.4.3-cp311-cp311-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d419c49d842ea3cb3c872098620f649ac2a6367f422e28c9dc143795a6a7b390",
                "md5": "30ace0b5ec08d98ec88b6a783ab7b3b6",
                "sha256": "7fc534470d73dc1cf81f0d71abda8a2f886c78401181c8eb532731bae5031ba5"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "30ace0b5ec08d98ec88b6a783ab7b3b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 960696,
            "upload_time": "2023-12-21T15:44:13",
            "upload_time_iso_8601": "2023-12-21T15:44:13.142735Z",
            "url": "https://files.pythonhosted.org/packages/d4/19/c49d842ea3cb3c872098620f649ac2a6367f422e28c9dc143795a6a7b390/pydomdisco-0.4.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "014f234a64b597c959adfdaa7aaafcd008c220a1037bba8887e3fa56bf702811",
                "md5": "ca619ec393c429c71bcbd81dee26e82d",
                "sha256": "22155611f07ed2889a76f250d2034d7cfc0b4aa6120ec7f3c83cab875c6150e6"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca619ec393c429c71bcbd81dee26e82d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1058071,
            "upload_time": "2023-12-21T15:41:35",
            "upload_time_iso_8601": "2023-12-21T15:41:35.320927Z",
            "url": "https://files.pythonhosted.org/packages/01/4f/234a64b597c959adfdaa7aaafcd008c220a1037bba8887e3fa56bf702811/pydomdisco-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f2d7775ba11bc19c6566c0222a83d195fa152cbd70b596f577cb1b330f38cc9",
                "md5": "84325414482df83842a8416868d7715c",
                "sha256": "d688db0c348a7778578428a724ea521d2be12b638e8324902f8b086670bb749a"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "84325414482df83842a8416868d7715c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 941459,
            "upload_time": "2023-12-21T15:42:33",
            "upload_time_iso_8601": "2023-12-21T15:42:33.716384Z",
            "url": "https://files.pythonhosted.org/packages/1f/2d/7775ba11bc19c6566c0222a83d195fa152cbd70b596f577cb1b330f38cc9/pydomdisco-0.4.3-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "facbee5d795f72dfcd4f51b64a65367c521d8835715138bbf97c4faeabf277ad",
                "md5": "507254be5b26b396957e9929c7f7ac2f",
                "sha256": "1ec261f1c76de8982a9345aa66e02e9c4ead551ba90ba024d3e000fd358377df"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp37-cp37m-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "507254be5b26b396957e9929c7f7ac2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 984168,
            "upload_time": "2023-12-21T15:42:40",
            "upload_time_iso_8601": "2023-12-21T15:42:40.090785Z",
            "url": "https://files.pythonhosted.org/packages/fa/cb/ee5d795f72dfcd4f51b64a65367c521d8835715138bbf97c4faeabf277ad/pydomdisco-0.4.3-cp37-cp37m-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5cce2255a094615fa5e949c0431a3f8a00babc02c70cd05df6102a53fd3fb04a",
                "md5": "5f5ff3abd950be1da401773338914eb6",
                "sha256": "9aa323833953edabf3af08c63baf3c12b33057c948a33dc10be014956349ab37"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp37-cp37m-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5f5ff3abd950be1da401773338914eb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 953790,
            "upload_time": "2023-12-21T15:44:22",
            "upload_time_iso_8601": "2023-12-21T15:44:22.500683Z",
            "url": "https://files.pythonhosted.org/packages/5c/ce/2255a094615fa5e949c0431a3f8a00babc02c70cd05df6102a53fd3fb04a/pydomdisco-0.4.3-cp37-cp37m-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f925a9377684d85a1348e7315b55d700fe8487bd14af9ce7baa850904cdc958b",
                "md5": "bb37b4e8cfd78002c567e880ba85bd23",
                "sha256": "089bd952d9e9b7ee9b62d0c0a86e432aabb2030cead4fc017deb8d09c5ceeded"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bb37b4e8cfd78002c567e880ba85bd23",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1055738,
            "upload_time": "2023-12-21T15:41:34",
            "upload_time_iso_8601": "2023-12-21T15:41:34.174370Z",
            "url": "https://files.pythonhosted.org/packages/f9/25/a9377684d85a1348e7315b55d700fe8487bd14af9ce7baa850904cdc958b/pydomdisco-0.4.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd3fd9cdaf0093cfe967a8ac770fc2ba4ef7f3279afe0197376d1592bd3f52f7",
                "md5": "2a6609740c2b39e60c7e94ae1212426e",
                "sha256": "4ec282aefe932c64c77104c80bcd0972d878136d2cfba6043e7577b20c122a3a"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2a6609740c2b39e60c7e94ae1212426e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 942560,
            "upload_time": "2023-12-21T15:43:06",
            "upload_time_iso_8601": "2023-12-21T15:43:06.337467Z",
            "url": "https://files.pythonhosted.org/packages/dd/3f/d9cdaf0093cfe967a8ac770fc2ba4ef7f3279afe0197376d1592bd3f52f7/pydomdisco-0.4.3-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "52c8bb3d6c227e18091a3237fdd42028c2d34e0e941aae4c30dd2bafe1a43beb",
                "md5": "0f1093cdaac04728fb3871bd28f5ace8",
                "sha256": "d8232cbafbc9e23db7a7ecec4a2f78194cf20a62a30cb93147cb0300c00eb484"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp38-cp38-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0f1093cdaac04728fb3871bd28f5ace8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 984219,
            "upload_time": "2023-12-21T15:42:38",
            "upload_time_iso_8601": "2023-12-21T15:42:38.466081Z",
            "url": "https://files.pythonhosted.org/packages/52/c8/bb3d6c227e18091a3237fdd42028c2d34e0e941aae4c30dd2bafe1a43beb/pydomdisco-0.4.3-cp38-cp38-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2afd01d5b3ab898ce9845ba90109f82bccb7e47206dfdde217baf51db2445364",
                "md5": "75003ba11a555d9ff20622582af760b8",
                "sha256": "4275cf66e3258d1fd67207b96eff7fa6a574a24fffda8614e1c4997e8f8c200e"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "75003ba11a555d9ff20622582af760b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 953971,
            "upload_time": "2023-12-21T15:44:08",
            "upload_time_iso_8601": "2023-12-21T15:44:08.421675Z",
            "url": "https://files.pythonhosted.org/packages/2a/fd/01d5b3ab898ce9845ba90109f82bccb7e47206dfdde217baf51db2445364/pydomdisco-0.4.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "015288a283d753f701bd2235e5aa913b9a202cd78cd32b9dcbeb63f57d3a6ae3",
                "md5": "c86ad60cd3e74a13e8f83dca995937d8",
                "sha256": "0656935b96483af0f194e57fb262bc37f12de3d8c05a32fe42854898027fa5a3"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c86ad60cd3e74a13e8f83dca995937d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1055766,
            "upload_time": "2023-12-21T15:41:33",
            "upload_time_iso_8601": "2023-12-21T15:41:33.094006Z",
            "url": "https://files.pythonhosted.org/packages/01/52/88a283d753f701bd2235e5aa913b9a202cd78cd32b9dcbeb63f57d3a6ae3/pydomdisco-0.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d04416ee31e34b614651605b4132fb92132ea2bd6b68bccf133b55d8488c284a",
                "md5": "6eb92d4bca7ef5382234f3b8f496c23f",
                "sha256": "8a96543826e8ec5b7f95d8e63ff6ad98661ef7f6d770c7179ab7f4fec6d927fb"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6eb92d4bca7ef5382234f3b8f496c23f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 942576,
            "upload_time": "2023-12-21T15:42:33",
            "upload_time_iso_8601": "2023-12-21T15:42:33.431028Z",
            "url": "https://files.pythonhosted.org/packages/d0/44/16ee31e34b614651605b4132fb92132ea2bd6b68bccf133b55d8488c284a/pydomdisco-0.4.3-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45b02fe06b98fe8d69d1a87455a9d159e6752e5c60c8d9a9be2c0332e0283a66",
                "md5": "e9aeb5b2ca72550aff3c2b972a29f235",
                "sha256": "ba0eab9adec79defe4a3fb12143379ad631c8cc324cb52903a815a6d966a04ff"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp39-cp39-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e9aeb5b2ca72550aff3c2b972a29f235",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 979793,
            "upload_time": "2023-12-21T15:41:28",
            "upload_time_iso_8601": "2023-12-21T15:41:28.950826Z",
            "url": "https://files.pythonhosted.org/packages/45/b0/2fe06b98fe8d69d1a87455a9d159e6752e5c60c8d9a9be2c0332e0283a66/pydomdisco-0.4.3-cp39-cp39-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0c378e89ddbdce07a9a6197d24589a27058da8373d23687b80ea2b9f2a67d2e",
                "md5": "3790d860aafde5f33dad5a8e5edd3111",
                "sha256": "ef2c18ef51875fa251c48817b11708108af318b0930427c2e3983d30a6cbb25a"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3790d860aafde5f33dad5a8e5edd3111",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 959843,
            "upload_time": "2023-12-21T15:42:12",
            "upload_time_iso_8601": "2023-12-21T15:42:12.595091Z",
            "url": "https://files.pythonhosted.org/packages/e0/c3/78e89ddbdce07a9a6197d24589a27058da8373d23687b80ea2b9f2a67d2e/pydomdisco-0.4.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97e1729d735d69b0ac2b17e28439f36df3c9f41624c864e62c636ce580d07281",
                "md5": "40aaa265c2694cf5d6fb25e9dac046af",
                "sha256": "7596c3b667178879c7daf5ef568362aa881ab37ad0a335741dda918b4476bc4b"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "40aaa265c2694cf5d6fb25e9dac046af",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1058177,
            "upload_time": "2023-12-21T15:41:32",
            "upload_time_iso_8601": "2023-12-21T15:41:32.438940Z",
            "url": "https://files.pythonhosted.org/packages/97/e1/729d735d69b0ac2b17e28439f36df3c9f41624c864e62c636ce580d07281/pydomdisco-0.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af790f8c1704c88b0bfddb419424bd813c48a309f6466d374005e34c94e32c4d",
                "md5": "c964ec313f0801e3a34b35d0d674b01b",
                "sha256": "f0646079945dc5a578d0538a6bd35703d75cc654e4300d19317b99d8f21eaba3"
            },
            "downloads": -1,
            "filename": "pydomdisco-0.4.3-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c964ec313f0801e3a34b35d0d674b01b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 942057,
            "upload_time": "2023-12-21T15:42:37",
            "upload_time_iso_8601": "2023-12-21T15:42:37.792341Z",
            "url": "https://files.pythonhosted.org/packages/af/79/0f8c1704c88b0bfddb419424bd813c48a309f6466d374005e34c94e32c4d/pydomdisco-0.4.3-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-21 15:42:47",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "intsights",
    "github_project": "pydomdisco",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pydomdisco"
}
        
Elapsed time: 0.15480s