Metadata-Version: 2.4
Name: nuki-web-api
Version: 0.1.3
Summary: A Python wrapper for the Nuki Web API
Author-email: barghest89 <blachosf@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/barghest89/nuki-web-api
Project-URL: Bug Tracker, https://github.com/barghest89/nuki-web-api/issues
Keywords: nuki,api,smartlock
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
Requires-Dist: requests==2.32.5

# nuki-web-api

A Python wrapper for the [Nuki Web API](https://api.nuki.io/).

## Installation

```bash
pip install nuki-web-api
```


## Usage
```Python
from nukiwebapi import NukiWebAPI

client = NukiWebAPI("YOUR_ACCESS_TOKEN")

for lock_id, lock in client.lock_instances:
    print(lock.name)
    print(lock.hex_id)

    print(lock.is_locked)
    print(lock.battery_charge)

```
