Metadata-Version: 2.1
Name: nbnpy
Version: 0.5.0
Summary: Unofficial NBN API wrapper
Home-page: https://github.com/diabolical-ninja/nbnpy
License: MIT
Author: Yass
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: httpx (>=0.23.0,<0.24.0)
Project-URL: Documentation, https://nbnpy.readthedocs.io
Project-URL: Repository, https://github.com/diabolical-ninja/nbnpy
Description-Content-Type: text/markdown

# NBN-Py

![PyPi Version](https://img.shields.io/pypi/v/nbnpy)
![Python Versions](https://img.shields.io/pypi/pyversions/nbnpy)
[![License](https://img.shields.io/badge/license-MIT-green)](./LICENSE)
<br/>

[![Code Hygiene](https://github.com/diabolical-ninja/nbnpy/actions/workflows/code_hygiene.yml/badge.svg)](https://github.com/diabolical-ninja/nbnpy/actions/workflows/code_hygiene.yml)
[![codecov](https://codecov.io/gh/diabolical-ninja/nbn/branch/main/graph/badge.svg?token=hyTE4HlIxK)](https://codecov.io/gh/diabolical-ninja/nbn)
![black codestyle](https://img.shields.io/badge/Code%20Style-Black-black)
<br/>

[![Documentation Status](https://readthedocs.org/projects/nbnpy/badge/?version=latest)](https://nbnpy.readthedocs.io/en/latest/?badge=latest)

<br/>

This package provides an unofficial wrapper of the National Broadband Network's (NBN) API. It allows you to programatically lookup address's and examine connection details such as the connection type (FTTP, HFC, etc), service type, connection status and more.
<br/><br/>
**Disclaimer:** _This project is not affiliated with the NBN._


## Installation

Install `nbnpy` from the Python Package Index:

```console
$ pip install nbnpy
```

## Requirements

- Python 3.8+


## Usage

This example gets the LocationID for an address then looks up the NBN connection details for it.
```python
import pprint
from nbnpy.nbn import NBN

nbn_client = NBN()
location_ids = nbn_client.get_location_ids_from_address("1 Flinders Street, Melbourne VIC")

# The "get_location_ids_*" methods return a list of nearby locations
# For the purpose of this example, the first result will suffice
location_id = location_ids["suggestions"][0]["id"]

location_info = nbn_client.location_information(location_id)
pprint.pprint(location_info)
```

<details>
  <summary>Location Info Output</summary>
  
  ```json
  {
        "addressDetail": {
            "TC2SME": true,
            "address1": "Unit 1 32 Flinders St",
            "address2": "Melbourne VIC 3000 Australia",
            "altReasonCode": "NULL_NA",
            "cbdpricing": true,
            "coatChangeReason": "",
            "disconnectionDate": "Sep 2020",
            "disconnectionStatus": "PAST",
            "ee": true,
            "eec": 1,
            "formattedAddress": "UNIT 1 32 FLINDERS ST MELBOURNE VIC 3000 Australia",
            "frustrated": false,
            "id": "LOC000175010671",
            "latitude": -37.81540657,
            "longitude": 144.97344433,
            "reasonCode": "FTTC_SA",
            "serviceStatus": "available",
            "serviceType": "Fixed line",
            "speedTierAvailability": true,
            "techFlip": "",
            "techType": "FTTC",
            "wp1DisconnectionDate": "11 September 2020",
            "wp1DisconnectionStatus": "PAST",
            "wp2DisconnectionDate": "11 September 2020",
            "wp2DisconnectionStatus": "PAST",
            "wp3DisconnectionDate": "11 September 2020",
            "wp3DisconnectionStatus": "PAST",
            "wp4DisconnectionDate": "11 September 2020",
            "wp4DisconnectionStatus": "PAST",
            "zeroBuildCost": true
        },
        "servingArea": {
            "csaId": "CSA300000010316",
            "description": "Exhibition",
            "rfsMessage": "Sep 2018",
            "serviceCategory": "brownfields",
            "serviceStatus": "available",
            "serviceType": "Fixed line",
            "techType": "FTTC"
        },
        "timestamp": 1654656817504
    }  
  ```
</details>




## Building the Project

This package uses `poetry` and `nox` for package management and building. 

If nox is not already installed, install it:
```console
$ pip install nox
```

Run everything including tests and documentation building
```console
$ nox

# Or to run a specific stage:
$ nox -s <stage name>, eg
$ nox -s tests
```


## Issues

If you encounter any problems,
please [file an issue](https://github.com/diabolical-ninja/nbn/issues) along with a detailed description.

