Python Integration

Open-source Python projects categorized as Integration

Top 23 Python Integration Projects

  • integration

    HACS gives you a powerful UI to handle downloads of all your custom needs.

    Project mention: Thoughts, learnings and regrets after three years on Home Assistant | news.ycombinator.com | 2024-02-12

    I have HACS[0] installed in my Docker image, I use it for exactly one integration and the initial setup seemed a little dodgy but it's been pain-free for a couple of years now.

    [0]: https://hacs.xyz/

  • meltano

    Meltano: the declarative code-first data integration engine that powers your wildest data and ML-powered product ideas. Say goodbye to writing, maintaining, and scaling your own API integrations.

    Project mention: meltano VS cloudquery - a user suggested alternative | libhunt.com/r/meltano | 2023-06-02
  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

  • PlexKodiConnect

    Plex integration in Kodi done right

    Project mention: Syncing Kodi across multiple devices | /r/kodi | 2023-12-07

    I used to do that, now I use Plex (running in a docker container on a machine under my stairs) and the Plex Kodi Connect (PKC) to sync my Kodi database to my Plex database. Best of both worlds

  • pyscript

    Pyscript adds rich Python scripting to HASS (by custom-components)

    Project mention: Building a local AI smart Home Assistant | news.ycombinator.com | 2024-01-13

    3) Again, already there. ESPHome is a first class citizen in HA.

    I feel like you've not read the HA docs [1,] or took the time to understand the architecture [2]. And, for someone who has more than enough self-proclaimed skills, this should be a very understandable system.

    [0] https://github.com/custom-components/pyscript

  • dreame-vacuum

    Home Assistant integration for Dreame robot vacuums with map support

    Project mention: Dreame L10s ultra firmware 4.3.6_3018 Home Assistant integration broke | /r/Dreame_Tech | 2023-08-11

    I've added my L10s to the Dreamehome app, did the firmware upgrade to 4.3.6_3018 and switched it back to the Mi Home App. Since than, the Home Assistant Dreame Vaccum integration cannot load the robot via local connection anymore. The local LAN connection seem to be broken with this firmware. Has anyone the same issue?

  • scheduler-component

    Custom component for HA that enables the creation of scheduler entities

  • tesla

    Tesla custom integration for Home Assistant. This requires a refresh token be generated by third-party apps to login. (by alandtse)

    Project mention: MyQ now free? Possibly included with premium connectivity? | /r/teslamotors | 2023-06-23

    Yeah! So first, get HACS if you don’t already have it (https://hacs.xyz), then the custom Tesla integration (https://github.com/alandtse/tesla) - side note: you’ll need to be able to get a refresh token for your account (iOS app: https://apps.apple.com/us/app/auth-app-for-tesla/id1552058613)… once you have the integration setup, create an automation. It should trigger when your vehicle tracker enters home zone and you can set device > myQ to open. Lmk if you need more help or have questions

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

  • django-nextjs

    Next.js integration for Django projects

  • homeassistant-solax-modbus

    SolaX Power Modbus custom_component for Home Assistant (Supports some Ginlong Solis, Growatt, Sofar Solar, TIGO TSI & Qcells Q.Volt Hyb)

  • ha-hildebrandglow-dcc

    Home Assistant integration for UK SMETS (Smart) meters pulling data from the DCC via the Hildebrand Glow API

    Project mention: SMETS2 Smart Meters via pyglowmarkt | /r/homebridge | 2023-08-18

    In the UK we use SMETS meters, viewable through https://github.com/cybermaggedon/pyglowmarkt and the Hildebrant Glow App! I found a Home Assistant plugin for this https://github.com/HandyHat/ha-hildebrandglow-dcc. Does anyone know of any similar homebridge plugins or can they make one usijg above Python library!

  • galaxy-integration-humblebundle

    Humble Bundle integration for GOG Galaxy 2.0

  • torchquad

    Numerical integration in arbitrary dimensions on the GPU using PyTorch / TF / JAX

  • maasta

    MAAS Terraform Ansible

  • ev_smart_charging

    Electric vehicle smart charging for Home Assistant.

    Project mention: Vilken laddbox har du? | /r/elbilsverige | 2023-06-20

    EV Smart Charging

  • tubearchivist-jf

    Tube Archivist Jellyfin Integration

    Project mention: New release: v0.4.0 | /r/TubeArchivist | 2023-08-06

    And don’t forget, we now have our very own Jellyfin integration, now also as a docker image, thanks jonasrosland for taking the initiative there. This allows you to sync metadata from TA to JF: https://github.com/tubearchivist/tubearchivist-jf. Plex integration is in the works by your favorite helping hand, lamusmaser, so stay tuned for that.

  • ha_hisense_tv

    Hisense TV integration for Home Assistant

  • simple-wyze-vac

    Home Assistant Custom Component for Wyze Vacuum

  • ynab

    YNAB component for Home Assistant

  • ha-nfl

    NFL game scores custom component for Home Assistant

    Project mention: Is it possible to use ESP32 to trigger a sound effect on speakers? (Hockey Goal Light) | /r/WLED | 2023-05-12
  • cupra_we_connect

    Cupra integration for Home Assistant

    Project mention: New Cupra Born Home Assistant Integration | /r/cupraborn | 2023-06-09

    Once HACS is installed and working, the process to install this component is simple enough. You first add the repository I linked to HACS as a custom repo (this component hasn't been formally added to HACS yet - it's on my list to do!) and then, using HACS, search for "Cupra" and you should be able to install from there. Please remember to completely remove the old version first and reboot before using HACS to install the new one!

  • logzio-python-handler

    Python logging handler that sends your logs to Logz.io using the https bulk input

  • nfcompose

    Build REST APIs/Integrations in minutes instead of hours - NF Compose is a (data) integration platform that allows developers to define REST APIs in seconds instead of hours. Generated REST APIs are backed by postgres and support automatic consumer webhook notifications on data changes out of the box.

    Project mention: Implementing system-versioned tables in Postgres | news.ycombinator.com | 2024-02-07

    I have implemented this for our tool NF Compose that allows us to build REST APIs without writing a single line of code [0]. I didn't go the route of triggers because we generate database tables automatically and we used to have a crazy versioning scheme that was inspired by data vault and anchor modelling where we stored every change on every attribute as a new record.

    Sounded cool, but in practice it was really slow. The techniques that are usually employed by Data Vault to fix this issue seemed too complex. Over time we moved to an implementation that handles the historization dynamically at runtime by generating SQL queries ourselves [1]. On a sidenote: Generating SQL in python sounds dangerous, but we spent a lot of time on making it secure. We even have a linter that checks that everything is escaped properly whenever we are in dev mode [2]

    [0] https://github.com/neuroforgede/nfcompose/

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020). The latest post mention was on 2024-02-12.

Python Integration related posts

Index

What are some of the best open-source Integration projects in Python? This list will help you:

Project Stars
1 integration 4,589
2 meltano 1,571
3 PlexKodiConnect 1,111
4 pyscript 772
5 dreame-vacuum 593
6 scheduler-component 567
7 tesla 514
8 django-nextjs 321
9 homeassistant-solax-modbus 250
10 ha-hildebrandglow-dcc 219
11 galaxy-integration-humblebundle 183
12 lnxlink 160
13 torchquad 158
14 maasta 155
15 ev_smart_charging 127
16 tubearchivist-jf 100
17 ha_hisense_tv 76
18 simple-wyze-vac 47
19 ynab 44
20 ha-nfl 42
21 cupra_we_connect 34
22 logzio-python-handler 34
23 nfcompose 32
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com