pyaussiebb


Namepyaussiebb JSON
Version 0.1.3 PyPI version JSON
download
home_pagehttps://github.com/yaleman/pyaussiebb
SummaryAussie Broadband API module
upload_time2023-10-03 07:49:38
maintainer
docs_urlNone
authorJames Hodgkinson
requires_python>=3.9,<4.0
licenseMIT
keywords api aussie broadband internet
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pyAussieBB

This is a very simple module for interacting with the Aussie Broadband APIs.

![ruff](https://github.com/yaleman/aussiebb/actions/workflows/pylint.yml/badge.svg)
![mypy](https://github.com/yaleman/aussiebb/actions/workflows/mypy.yml/badge.svg)
![pytest](https://github.com/yaleman/aussiebb/actions/workflows/pytest.yml/badge.svg)
![Shellcheck](https://github.com/yaleman/aussiebb/actions/workflows/shellcheck.yml/badge.svg)

## Usage

```shell
pip install --user pyaussiebb
python
>>> from aussiebb import AussieBB
>>> account = AussieBB(username, password)
>>> account.get_services()
[{allyourservicedetails}]
```

For more, check out the docs.

## AsyncIO version

You can replace `from aussiebb import AussieBB` with `from aussiebb.asyncio import AussieBB` and you'll get an `aiohttp`-powered version. The only difference in this case is that you have to explicitly call `login()` for reasons.

If you hit the rate limit it'll raise a `RateLimit` exception. I haven't put that functionality into the blocking version yet, since ... that tends not to hit it. 🤣

## Development

### Example service tests I've seen

All the "endpoints" below should be tacked onto `aussiebb.const.BASEURL['api']`.

**Warning:** `/nbn/{service_id}/connection` seems to have both a GET and POST method endpoint - tests on other endpoints may be similar.

These can be run by using `AussieBB.run_test()` with the string after the last forward-slash as the "test" - ie, `connection` or `linestate`.

#### HFC

These are entirely untested so far.

| Endpoint | Method | Name | Description |
| --- | --- | --- | --- |
| `/nbn/{service_id}/connection` | Probably GET | Check Connection | Check to see if your service is currently connected |
| `/nbn/{service_id}/connection` | Probably POST | Kick Connection | Kick your current session and force your device to reauthenticate |
| `/tests/{service_id}/loopback` | Probably POST | Loopback Test | This will test the connectivity between the point NBN’s network transitions to ours and to the closest point to your property. Usually either the Network Termination Device or Node. |
| `/tests/{service_id}/ntdstatus` | Probably POST | NTD Status | An NTD Status will show you the operational state of the Network Termination Device (NTD). The test will also show if the NTD is detecting the wired connection from your router. |

#### FTTC

| Endpoint | Method | Name | Description |
| --- | --- | --- | --- |
| `/nbn/{service_id}/connection` | GET |Check Connection | Check to see if your service is currently connected |
| `/nbn/{service_id}/connection`  | Probably POST |Kick Connection | Kick your current session and force your device to reauthenticate |
| `/tests/{service_id}/dpuportreset` | Probably POST |DPU Port Reset | Reset the Port on the DPU (Distribution Point Unit) along with clearing any errors that maybe causing issues with connectivity.  |
| `/tests/{service_id}/dpuportstatus` | POST |DPU Port Status | A DPU (Distribution Point Unit) port status will show if the NCD (Network Connection Device) is providing power to the DPU. It will also state if the NCD (Network Connection Device) is in sync. |
| `/tests/{service_id}/dpustatus` | POST |DPU Status | This will provide if the DPU (Distribution Point Unit) is currently being powered. |
| `/tests/{service_id}/loopback` | POST |Loopback Test | This will test the connectivity between the point NBN’s network transitions to ours and to the closest point to your property. Usually either the Network Termination Device or Node. |
| `/tests/{service_id}/ncdportreset` | Probably POST |NCD Port Reset | Reset the gateway port on your NCD (Network Connection Device). |
| `/tests/{service_id}/ncdreset` | Probably POST |NCD Reset | This will remotely restart your Network Termination Device. |

#### FTTN

| Endpoint | Method | Name | Description |
|  --- | --- | --- | --- |
| `/nbn/{service_id}/connection` | GET | Check Connection | Check to see if your service is currently connected |
| `/nbn/{service_id}/connection` | Probably POST | Kick Connection | Kick your current session and force your device to reauthenticate |
| `/tests/{service_id}/linestate` | POST | Line State | A line state test will determine if you have “sync” (connection) to the node. If the service is in sync this test will also return your maximum and current attainable transfer rate. |
| `/tests/{service_id}/loopback` | POST | Loopback Test | This will test the connectivity between the point NBN’s network transitions to ours and to the closest point to your property. Usually either the Network Termination Device or Node. |
| `/tests/{service_id}/portreset` | Probably POST | Port Reset | This will reset the connection from the Node and also clear errors that may be causing issues with gaining sync. |
| `/tests/{service_id}/stabilityprofile` | Probably POST | Stability Profile | This will apply changes to your FTTN service including allowing increased noise to occur before making the connection unstable. This will cause your speeds to degrade as a result, but in turn making the service more stable. For NBN to investigate a fault this profile needs to be applied and a minimum of 5 dropouts recorded over a 24hr period on NBN's systems before a dropout fault can be raised |

#### FTTP

These are as-yet untested.

| Endpoint | Method | Name | Description |
|  --- | --- | --- | --- |
| `/nbn/{service_id}/connection` | Probably GET | Check Connection | Check to see if your service is currently connected |
| `/nbn/{service_id}/connection` | Probably POST | Kick Connection | Kick your current session and force your device to reauthenticate |
| `/tests/{service_id}/loopback` | Probably POST | Loopback Test | This will test the connectivity between the point NBN’s network transitions to ours and to the closest point to your property. Usually either the Network Termination Device or Node. |
| `/tests/{service_id}/portreset` | Probably POST | Port Reset | This will reset the connection from the Node and also clear errors that may be causing issues with gaining sync. |
| `/tests/{service_id}/unidstatus` | Probably POST | UNI-D Status | UNI-D Status will show if the UNI-D port you are currently using has a router connected to it. This will also provide the Link speed your router and UNI-D port are connected at Eg, 100mbit or 1gbit. You will also see the MAC address of the currently connected router. |

## Changelog

See [CHANGELOG.md](CHANGELOG.md)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/yaleman/pyaussiebb",
    "name": "pyaussiebb",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9,<4.0",
    "maintainer_email": "",
    "keywords": "api,aussie,broadband,internet",
    "author": "James Hodgkinson",
    "author_email": "james@terminaloutcomes.com",
    "download_url": "https://files.pythonhosted.org/packages/19/1e/8799b8e33049935de73978a185516a7ffd95211d45411b3bd04d1000da10/pyaussiebb-0.1.3.tar.gz",
    "platform": null,
    "description": "# pyAussieBB\n\nThis is a very simple module for interacting with the Aussie Broadband APIs.\n\n![ruff](https://github.com/yaleman/aussiebb/actions/workflows/pylint.yml/badge.svg)\n![mypy](https://github.com/yaleman/aussiebb/actions/workflows/mypy.yml/badge.svg)\n![pytest](https://github.com/yaleman/aussiebb/actions/workflows/pytest.yml/badge.svg)\n![Shellcheck](https://github.com/yaleman/aussiebb/actions/workflows/shellcheck.yml/badge.svg)\n\n## Usage\n\n```shell\npip install --user pyaussiebb\npython\n>>> from aussiebb import AussieBB\n>>> account = AussieBB(username, password)\n>>> account.get_services()\n[{allyourservicedetails}]\n```\n\nFor more, check out the docs.\n\n## AsyncIO version\n\nYou can replace `from aussiebb import AussieBB` with `from aussiebb.asyncio import AussieBB` and you'll get an `aiohttp`-powered version. The only difference in this case is that you have to explicitly call `login()` for reasons.\n\nIf you hit the rate limit it'll raise a `RateLimit` exception. I haven't put that functionality into the blocking version yet, since ... that tends not to hit it. \ud83e\udd23\n\n## Development\n\n### Example service tests I've seen\n\nAll the \"endpoints\" below should be tacked onto `aussiebb.const.BASEURL['api']`.\n\n**Warning:** `/nbn/{service_id}/connection` seems to have both a GET and POST method endpoint - tests on other endpoints may be similar.\n\nThese can be run by using `AussieBB.run_test()` with the string after the last forward-slash as the \"test\" - ie, `connection` or `linestate`.\n\n#### HFC\n\nThese are entirely untested so far.\n\n| Endpoint | Method | Name | Description |\n| --- | --- | --- | --- |\n| `/nbn/{service_id}/connection` | Probably GET | Check Connection | Check to see if your service is currently connected |\n| `/nbn/{service_id}/connection` | Probably POST | Kick Connection | Kick your current session and force your device to reauthenticate |\n| `/tests/{service_id}/loopback` | Probably POST | Loopback Test | This will test the connectivity between the point NBN\u2019s network transitions to ours and to the closest point to your property. Usually either the Network Termination Device or Node. |\n| `/tests/{service_id}/ntdstatus` | Probably POST | NTD Status | An NTD Status will show you the operational state of the Network Termination Device (NTD). The test will also show if the NTD is detecting the wired connection from your router. |\n\n#### FTTC\n\n| Endpoint | Method | Name | Description |\n| --- | --- | --- | --- |\n| `/nbn/{service_id}/connection` | GET |Check Connection | Check to see if your service is currently connected |\n| `/nbn/{service_id}/connection`  | Probably POST |Kick Connection | Kick your current session and force your device to reauthenticate |\n| `/tests/{service_id}/dpuportreset` | Probably POST |DPU Port Reset | Reset the Port on the DPU (Distribution Point Unit) along with clearing any errors that maybe causing issues with connectivity.  |\n| `/tests/{service_id}/dpuportstatus` | POST |DPU Port Status | A DPU (Distribution Point Unit) port status will show if the NCD (Network Connection Device) is providing power to the DPU. It will also state if the NCD (Network Connection Device) is in sync. |\n| `/tests/{service_id}/dpustatus` | POST |DPU Status | This will provide if the DPU (Distribution Point Unit) is currently being powered. |\n| `/tests/{service_id}/loopback` | POST |Loopback Test | This will test the connectivity between the point NBN\u2019s network transitions to ours and to the closest point to your property. Usually either the Network Termination Device or Node. |\n| `/tests/{service_id}/ncdportreset` | Probably POST |NCD Port Reset | Reset the gateway port on your NCD (Network Connection Device). |\n| `/tests/{service_id}/ncdreset` | Probably POST |NCD Reset | This will remotely restart your Network Termination Device. |\n\n#### FTTN\n\n| Endpoint | Method | Name | Description |\n|  --- | --- | --- | --- |\n| `/nbn/{service_id}/connection` | GET | Check Connection | Check to see if your service is currently connected |\n| `/nbn/{service_id}/connection` | Probably POST | Kick Connection | Kick your current session and force your device to reauthenticate |\n| `/tests/{service_id}/linestate` | POST | Line State | A line state test will determine if you have \u201csync\u201d (connection) to the node. If the service is in sync this test will also return your maximum and current attainable transfer rate. |\n| `/tests/{service_id}/loopback` | POST | Loopback Test | This will test the connectivity between the point NBN\u2019s network transitions to ours and to the closest point to your property. Usually either the Network Termination Device or Node. |\n| `/tests/{service_id}/portreset` | Probably POST | Port Reset | This will reset the connection from the Node and also clear errors that may be causing issues with gaining sync. |\n| `/tests/{service_id}/stabilityprofile` | Probably POST | Stability Profile | This will apply changes to your FTTN service including allowing increased noise to occur before making the connection unstable. This will cause your speeds to degrade as a result, but in turn making the service more stable. For NBN to investigate a fault this profile needs to be applied and a minimum of 5 dropouts recorded over a 24hr period on NBN's systems before a dropout fault can be raised |\n\n#### FTTP\n\nThese are as-yet untested.\n\n| Endpoint | Method | Name | Description |\n|  --- | --- | --- | --- |\n| `/nbn/{service_id}/connection` | Probably GET | Check Connection | Check to see if your service is currently connected |\n| `/nbn/{service_id}/connection` | Probably POST | Kick Connection | Kick your current session and force your device to reauthenticate |\n| `/tests/{service_id}/loopback` | Probably POST | Loopback Test | This will test the connectivity between the point NBN\u2019s network transitions to ours and to the closest point to your property. Usually either the Network Termination Device or Node. |\n| `/tests/{service_id}/portreset` | Probably POST | Port Reset | This will reset the connection from the Node and also clear errors that may be causing issues with gaining sync. |\n| `/tests/{service_id}/unidstatus` | Probably POST | UNI-D Status | UNI-D Status will show if the UNI-D port you are currently using has a router connected to it. This will also provide the Link speed your router and UNI-D port are connected at Eg, 100mbit or 1gbit. You will also see the MAC address of the currently connected router. |\n\n## Changelog\n\nSee [CHANGELOG.md](CHANGELOG.md)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Aussie Broadband API module",
    "version": "0.1.3",
    "project_urls": {
        "Documentation": "https://yaleman.github.io/pyaussiebb/",
        "Homepage": "https://github.com/yaleman/pyaussiebb",
        "Issues": "https://github.com/yaleman/pyaussiebb/issues/",
        "Repository": "https://github.com/yaleman/pyaussiebb"
    },
    "split_keywords": [
        "api",
        "aussie",
        "broadband",
        "internet"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54c921d3107e08224460c92bd83ae4856b64b77e0a91e83331cda474f315f1d3",
                "md5": "f2bcf03d267a70b12fa392635c499b67",
                "sha256": "f3017792e507ed99e626e0fdfdcf545fde60fd6fcda2215554796eac6aab264c"
            },
            "downloads": -1,
            "filename": "pyaussiebb-0.1.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f2bcf03d267a70b12fa392635c499b67",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9,<4.0",
            "size": 22097,
            "upload_time": "2023-10-03T07:49:36",
            "upload_time_iso_8601": "2023-10-03T07:49:36.638656Z",
            "url": "https://files.pythonhosted.org/packages/54/c9/21d3107e08224460c92bd83ae4856b64b77e0a91e83331cda474f315f1d3/pyaussiebb-0.1.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "191e8799b8e33049935de73978a185516a7ffd95211d45411b3bd04d1000da10",
                "md5": "4406313ce7c9cda911d89fb1e0c2cd7a",
                "sha256": "eb403d7fd89971b7426fde247de3a91cf36e3eda92ccbf7ebe3fc6009009c284"
            },
            "downloads": -1,
            "filename": "pyaussiebb-0.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "4406313ce7c9cda911d89fb1e0c2cd7a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9,<4.0",
            "size": 18213,
            "upload_time": "2023-10-03T07:49:38",
            "upload_time_iso_8601": "2023-10-03T07:49:38.461110Z",
            "url": "https://files.pythonhosted.org/packages/19/1e/8799b8e33049935de73978a185516a7ffd95211d45411b3bd04d1000da10/pyaussiebb-0.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-03 07:49:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "yaleman",
    "github_project": "pyaussiebb",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyaussiebb"
}
        
Elapsed time: 0.12369s