PythonScriptsPro icon indicating copy to clipboard operation
PythonScriptsPro copied to clipboard

Advanced version of python scripts for Home Assistant without limits

Results 22 PythonScriptsPro issues
Sort by recently updated
recently updated
newest added

Dear AlexxIT, thanks a lot for your nice tool. I use it every day and works really good. After the last update it bring even more compatiblity to my python...

question

I am trying to run local scripts with your integration. Unfortunately, the scripts generate errors in HA. The reason for this seems to be this 'feature': "**Starting from Home Assistant...

bug

The discover_scripts method has been added for creating services, similar to native integration, but with some additions, optional constants FIELDS, DESCRIPTION, NAME for service parameters are expected in the script,...

Hi, I managed to run only one python file in my /python_scripts folder. Is there a possiibility to run two or more Python files in parallel? Thanks and regards

question

I've started receiving the following error when running one of my scripts that uses the call_service function - seemingly since updating to HA 2024.4.4 a few days ago (no change...

Good afternoon. The config contains the command: ```yaml python_script: requirements: - paramiko>=3.4.0 ``` But when running *.py it still writes: Traceback (most recent call last): File "/homeassistant/python_scripts/ssh_script.py", line 1, in...

question

In configuration.yaml requirements listed libraries. error: No module named 'matplotlib' Current Homeassistant version 2024.7.3 ``` python_script: requirements: - paramiko>=2.7.1 - matplotlib>=3.9.0 - requests>=2.0.0 - beautifulsoup4>=4.0.0 - Pillow>=10.0.0 - qrcode>=7.0.0 -...

question

Hi I exec a paython file from Call service node from Node-red and added this code: ``` { "file": "/config/python_scripts/unifi/unifi_led.py", "state": "on" } ``` it call and execute unifi_led.py but...

I don't know how to give a entity to the script. In my case, it is a IP Adress which I want to block in Fritzbox. e.g. `fritzblock.py {{ states(‘sensor.zu_sperrende_ip‘)...

How can I get the return value from a Python script? thank you. `action: notify.mobile_app_iphone metadata: {} data: message: aa{{ resp.success }}` `action: python_script.exec metadata: {} data: file: /config/python_scripts/hello_world.py response_variable:...