如何直接在 Whastapp 桌面应用程序上打开 wa.me 链接,而不是重定向到网页(在 PC 上)?

发布于 2025-01-11 12:02:47 字数 458 浏览 0 评论 0原文

我正在编写一个 Python 脚本 (3.10.2),它使用 pyttsx3speech_recognition< 通过语音命令打开某些桌面应用程序/em> 模块。

我考虑将 Whatsapp 也包含到此脚本中,并提供了我的一个 Whatsapp 联系人的 wa.me 聊天链接,该链接会在说出某个语音命令后打开。

然而,问题在于,当它打开链接时,它不是直接在 Whatsapp 桌面应用程序(已从 MSStore 下载)上打开它,而是将自身重定向到网络,然后提示询问是否继续在网络上或打开桌面应用程序。

我想直接打开应用程序,而不是通过网络提示。有办法吗?

提前致谢!

I am writing a Python script (3.10.2) which opens certain desktop applications via voice command using the pyttsx3 and speech_recognition modules.

I thought of including Whatsapp into this script as well, and provided the wa.me chat link of one of my whatsapp contacts, which would open after a certain voice command is said.

However, the problem lies when it opens the link, instead of directly opening it on the Whatsapp desktop application (already downloaded from MSStore) it redirects itself to the web and then the prompt asks if to continue on web or to open the desktop application.

I want to make it, directly opening the application, rather than going through the web prompts. Is there a way?

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暖伴 2025-01-18 12:02:47

好的,在这里。有两种方法,一种是这样:

import subprocess

subprocess.Popen("C:\\Windows\\System32\\whatsapp.exe")

另一种是这样:

import os
os.system("program_name")

Ok, here. There are two ways one is this:

import subprocess

subprocess.Popen("C:\\Windows\\System32\\whatsapp.exe")

Another is this:

import os
os.system("program_name")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文