gpt4 book ai didi

python - 如何从另一台计算机上的另一个 Python 程序连接到 Python 程序?

转载 作者:太空宇宙 更新时间:2023-11-03 16:34:22 25 4
gpt4 key购买 nike

我的问题包含更多细节,但底线是我需要了解如何从另一台计算机上的另一个程序调用我的其他Python程序(或函数),我需要什么(即套接字?)我正在做的是构建一个 Python UI 应用程序,该应用程序应连接到在 RPi 上运行的 Raspberry Pi Python GPIO 脚本来控制引脚(即 LED),我不确定这些细节是否相关,但最重要的是基本上如何让两个程序相互交谈?

最佳答案

Paramiko库可能是这里的解决方案之一:

import paramiko

ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(host, username=username, password=password, port=port, timeout=30) # setting up ssh connection
ssh.exec_command('<Execute Your Remote Script here>')
ssh.close()

关于python - 如何从另一台计算机上的另一个 Python 程序连接到 Python 程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37335922/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com