Skip to main content

Constants.

Project description

Please :star: this repo if you find it useful

Notice

This repository are not meant to be used by a user, but as a "blueprint" that developers can build upon, to make more awesome stuff.

HAVE FUN! 😎

Why?

This is simple, by having... #todo

What?

This repository contains multiple files, here is a overview:

File Purpose
... #todo

How?

  • …or create a new repository on the command line:

    # Initialize your new origin repository
    git init
    git remote add origin https://github.com/YOUR_NEW_REPOSITORY
    
    # Apply blueprint repository
    git remote add blueprint https://github.com/Limych/py-blueprint.git
    git fetch blueprint dev
    git reset --hard blueprint/dev
    git branch -M dev
    
    # Push changes to origin repository
    git push -u origin dev
    
  • …or apply blueprint to an existing repository from the command line:

    # Apply blueprint repository
    git remote add blueprint https://github.com/Limych/py-blueprint.git
    git fetch blueprint dev
    git merge blueprint/dev --allow-unrelated-histories
    
    # Push changes to origin repository
    git push -u origin dev
    

After these steps, your repository will developing on a own branch. But in parallel there will be this blueprint repository, new changes in which you can always apply with a couple of simple commands:

./bin/update
git merge blueprint/dev

Note: Please, before starting to develop your own code, initialize the development environment with the command

./bin/setup

README content if this was a published component:


Please :star: this repo if you find it useful

py-beward

PyPI version PyPI Python version Maintained

Project Maintenance

Python API for Beward Cameras and Doorbells. This is used in Home Assistant component but should be generic enough that can be used elsewhere.

Installation

pip install beward

Usage example

Discovery devices:

from beward import Beward


for dev in Beward.discovery().values():
    print(f"Found device \"{dev.name}\" at http://{dev.host_ip}:{dev.http_port}")

Initialize one device and listen for events:

import time

from beward import Beward
from beward.const import ALARM_ONLINE, ALARM_MOTION, ALARM_SENSOR


def handler(device, timestamp, alarm, state):
    print('Handling alarm "%s". State: %d' % (alarm, state))


DEVICE_HOST = '192.168.1.100'
DEVICE_USER = 'admin'
DEVICE_PASS = 'password'

bwd = Beward.factory(DEVICE_HOST, DEVICE_USER, DEVICE_PASS, stream=1)
bwd.add_alarms_handler(handler)
bwd.listen_alarms(alarms=(ALARM_ONLINE, ALARM_MOTION, ALARM_SENSOR))

print('Live image URL:', bwd.live_image_url)
print('RTSP live video URL:', bwd.rtsp_live_video_url)
print('Live image:', bwd.camera_image())

for decade in range(10):
    print('Time: %ds' % (decade * 10))
    time.sleep(10)
print('Bye')

Contributions are welcome!

This is an active open-source project. We are always open to people who want to use the code or contribute to it.

We have set up a separate document containing our contribution guidelines.

Thank you for being involved! :heart_eyes:

Authors & contributors

The original setup of this library is by Andrey "Limych" Khrolenok.

For a full list of all authors and contributors, check the contributor's page.

License

creative commons Attribution-NonCommercial-ShareAlike 4.0 International License

See separate license file for full text.

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

beward-1.0.15.tar.gz (13.8 kB view hashes)

Uploaded Source

Built Distribution

beward-1.0.15-py3-none-any.whl (12.2 kB view hashes)

Uploaded Python 3

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