haut-scanner


Namehaut-scanner JSON
Version 0.1.0 PyPI version JSON
download
home_pageNone
SummaryAsynchronous scanning utilities for discovering HAUT services, starting with the JWGLXT portal.
upload_time2025-10-19 09:56:53
maintainerNone
docs_urlNone
authorNone
requires_python>=3.11
licenseNone
keywords asyncio haut jwglxt network scanner
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # haut_scanner

An asynchronous toolkit for discovering HAUT services. The initial module targets HAUT JWGLXT portals and records reachable instances for later analysis.

## Installation

```bash
pip install haut_scanner
```

## Usage

Run the bundled command-line interface:

```bash
haut_scan
```

Or integrate the scanner into your own script:

```python
from haut_scanner import JwglxtScanner
import asyncio

async def main():
    scanner = JwglxtScanner()
    await scanner.scan()
    scanner.save_results("jwglxt_urls.json")

asyncio.run(main())
```

The scan writes any discovered portals to `jwglxt_urls.json` by default.

## Development

This project uses Hatch for builds. To produce a wheel and source distribution:

```bash
hatch build
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "haut-scanner",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": "asyncio, haut, jwglxt, network, scanner",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/80/02/58e77a464ec406b21ec56e5e01ba9932588be0a06664499501f4871f606e/haut_scanner-0.1.0.tar.gz",
    "platform": null,
    "description": "# haut_scanner\n\nAn asynchronous toolkit for discovering HAUT services. The initial module targets HAUT JWGLXT portals and records reachable instances for later analysis.\n\n## Installation\n\n```bash\npip install haut_scanner\n```\n\n## Usage\n\nRun the bundled command-line interface:\n\n```bash\nhaut_scan\n```\n\nOr integrate the scanner into your own script:\n\n```python\nfrom haut_scanner import JwglxtScanner\nimport asyncio\n\nasync def main():\n    scanner = JwglxtScanner()\n    await scanner.scan()\n    scanner.save_results(\"jwglxt_urls.json\")\n\nasyncio.run(main())\n```\n\nThe scan writes any discovered portals to `jwglxt_urls.json` by default.\n\n## Development\n\nThis project uses Hatch for builds. To produce a wheel and source distribution:\n\n```bash\nhatch build\n```\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Asynchronous scanning utilities for discovering HAUT services, starting with the JWGLXT portal.",
    "version": "0.1.0",
    "project_urls": null,
    "split_keywords": [
        "asyncio",
        " haut",
        " jwglxt",
        " network",
        " scanner"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b3c70b006c01d6de7bcd51fbe28b6d1e3fa302f3375e13b9568822f3ea1abd25",
                "md5": "c8e85f740e9a1333b38995efd3e4e757",
                "sha256": "a065c02f34b01e9d0172b1b33a7059735bf18eadc648b0799a760ed9b85e241a"
            },
            "downloads": -1,
            "filename": "haut_scanner-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c8e85f740e9a1333b38995efd3e4e757",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11",
            "size": 4236,
            "upload_time": "2025-10-19T09:56:51",
            "upload_time_iso_8601": "2025-10-19T09:56:51.379790Z",
            "url": "https://files.pythonhosted.org/packages/b3/c7/0b006c01d6de7bcd51fbe28b6d1e3fa302f3375e13b9568822f3ea1abd25/haut_scanner-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "800258e77a464ec406b21ec56e5e01ba9932588be0a06664499501f4871f606e",
                "md5": "d42e34ba956b768f3a8fa8d8764772d3",
                "sha256": "aa79eda3485d75b4477ff6b0f1b4d90d2a829dfbef847b5574fa738f25ef5af2"
            },
            "downloads": -1,
            "filename": "haut_scanner-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d42e34ba956b768f3a8fa8d8764772d3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 3242,
            "upload_time": "2025-10-19T09:56:53",
            "upload_time_iso_8601": "2025-10-19T09:56:53.295839Z",
            "url": "https://files.pythonhosted.org/packages/80/02/58e77a464ec406b21ec56e5e01ba9932588be0a06664499501f4871f606e/haut_scanner-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-19 09:56:53",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "haut-scanner"
}
        
Elapsed time: 2.26349s