Skip to main content

Python library for nello.io intercoms

Project description

# pynello

## Public API

This is new prefered way of interacting with Nello devices.

### Get started

Shoot an email to hello@nello.io and ask them to generate a `client_id` for you.

### Code sample

```python
from pynello.public import Nello
n = Nello(client_id='you-need-to-ask-nello-for-this', username='me@example.com', password='somethingLong')

# Get available locations
n.locations
# Open the door ("main" ie. first available location)
n.main_location.open_door()

# Setup a webhook for new events
from pynello.public import NelloApiClient
n = NelloApiClient(client_id='you-need-to-ask-nello-for-this', username='me@example.com', password='somethingLong')
loc_id = n.list_locations().get('data')[0].get('location_id')
n.set_webook(loc_id, 'https://example.com/nello/event')
```

### Upstream documentation

- [Authentication](https://nelloauth.docs.apiary.io)
- [Nello API](https://nellopublicapi.docs.apiary.io/)

## Private API

**This API is deprecated**

A huge thanks to Oskar Neumann for his [original work](https://forum.fhem.de/index.php/topic,75127.msg668871.html) on the [FHEM integration](https://fhem.de>).

### Code sample

```python
from pynello.private import Nello
n = Nello(username='me@example.com', password='somethingLong')

# Get available locations
n.locations

# Open the door ("main" ie. first available location)
n.main_location.open_door()

# Get the recent activity
n.main_location.activity
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pynello-2.0.0.tar.gz (7.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page