Skip to main content

Connect your smart devices and sensors to create complex, schedulable actions.

Project description

symbiotic

PyPI version Python package tests

Symbiotic allows you to create a smart environment where you have full control of your IoT devices. Sensors can be paired to devices and services to create complex actions and schedules.

Some of the main features are

  • Dependency-injection
  • Event bus
  • Fluent interface
  • Job scheduling

Installing

Install and update using pip

pip install symbiotic[yaml]

Simple app

from symbiotic import Symbiotic
from symbiotic.schedule import Schedule

app = Symbiotic()
app.config.from_yaml('config.yaml')

ifttt = app.services.IFTTT()  # <-- the service to control your device
light_bulb = app.devices.light_bulb('bedroom', service=ifttt)

# create custom schedules
weekdays_morning = Schedule().weekdays().at('08:00')
every_evening = Schedule().every_day().at('19:00')

# tell the app how to use your schedules
with app.scheduler(weekdays_morning) as scheduler:
    scheduler.add(light_bulb.on, brightness=80, transition_duration='30m')

with app.scheduler(every_evening) as scheduler:
    scheduler.add(
        light_bulb.on,
        brightness=50,
        color='red',
        transition_duration='60m'
    )

app.run()
* The application is running... (Press CTRL+C to terminate)

See example.py to learn how to configure devices like motion sensors.

Services

To learn how to configure an IFTTT applet, please read the documentation. Once your applet is configured, make sure to add your configuration parameters in config.yaml.

Contributions

Contributions are welcome! Feel free fork the project and to open a pull request.

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

symbiotic-1.0.0a3.tar.gz (17.0 kB view details)

Uploaded Source

Built Distribution

symbiotic-1.0.0a3-py3-none-any.whl (24.6 kB view details)

Uploaded Python 3

File details

Details for the file symbiotic-1.0.0a3.tar.gz.

File metadata

  • Download URL: symbiotic-1.0.0a3.tar.gz
  • Upload date:
  • Size: 17.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.8.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for symbiotic-1.0.0a3.tar.gz
Algorithm Hash digest
SHA256 7122056f3a6127ad1c43b1e93ee53e4ccbf4b96078a3360e16bb3fdfae43fd6c
MD5 35a6ffd43c686616ed12ea5bbf611ab7
BLAKE2b-256 e5c6c8ba5c5c5e10a8b3fa75b28b46dcc1c1ca8d2c9d66ee4fd23bd64296b1a8

See more details on using hashes here.

File details

Details for the file symbiotic-1.0.0a3-py3-none-any.whl.

File metadata

  • Download URL: symbiotic-1.0.0a3-py3-none-any.whl
  • Upload date:
  • Size: 24.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.8.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for symbiotic-1.0.0a3-py3-none-any.whl
Algorithm Hash digest
SHA256 08d395fd51035d57b1c9abd472d1a05569e6fb2fdeb9fca1e49a63b533c36905
MD5 620cd52678a3d32dd97be7ecefc59b6c
BLAKE2b-256 2c3b38520590d54a38d44eb7350a99e018feb71902a48ba6454e26bf5a38bd70

See more details on using hashes here.

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