Metadata-Version: 2.4
Name: nuki-web-api
Version: 0.1.0
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

# nukiwebapi

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

## Installation

```bash
pip install nukiwebapi
```

## Usage
```Python
from nukiwebapi import NukiWebAPI

client = NukiWebAPI("YOUR_ACCESS_TOKEN")

for lock_id, lock in client.smartlocks():
    print(lock_id, lock.name)
    lock.unlock()
```
