📜  pywhatkit 模块介绍

📅  最后修改于: 2022-05-13 01:55:16.988000             🧑  作者: Mango

pywhatkit 模块介绍

Python提供了许多内置库来简化我们的工作。其中pywhatkit是一个Python库,用于在特定时间发送 WhatsApp 消息,它还具有其他几个功能。

以下是 pywhatkit 模块的一些功能:

  1. 发送 WhatsApp 消息。
  2. 播放 YouTube 视频。
  3. 执行 Google 搜索。
  4. 获取有关特定主题的信息。

pywhatkit 模块也可用于将文本转换为手写文本图像。

在 Python3 中,pywhatkit 模块不会预先安装,因此您可以使用以下命令安装它:

1. 发送 Whatsapp 消息:

在这里,我们将学习使用 pywhatkit 模块的最简单方法,该模块利用 WhatsApp 网页自动向 WhatsApp 上的任何号码发送消息。但请确保您已在浏览器中登录 WhatsApp。

例子:

Python3
# importing the module
import pywhatkit
 
# using Exception Handling to avoid
# unprecedented errors
try:
   
  # sending message to receiver
  # using pywhatkit
  pywhatkit.sendwhatmsg("+91xxxxxxxxxx",
                        "Hello from GeeksforGeeks",
                        22, 28)
  print("Successfully Sent!")
 
except:
   
  # handling exception
  # and printing error message
  print("An Unexpected Error!")


Python3
# importing the module
import pywhatkit
 
# using Exception Handling
# to avoid exceptions
try:
   
  # it plays a random YouTube
  # video of GeeksforGeeks
  pywhatkit.playonyt("GeeksforGeeks")
  print("Playing...")
 
except:
   
  # printing the error message
  print("Network Error Occured")


Python3
# importing the module
import pywhatkit
 
# use Try Except to
# handle the Exceptions
try:
   
  # it will perform the Google search
  pywhatkit.search("GeeksforGeeks")
  print("Searching...")
 
except:
   
  # Printing Error Message
  print("An unknown error occured")


Python3
# importing the module
import pywhatkit
 
# using Exception Handling for
# handling unprecendented errors
try:
   
  # it will perform google search
  pywhatkit.info("Google", lines = 4)
  print("\nSuccessfully Searched")
 
except:
     
  # printing error message
  print("An Unknown Error Occured")



2. 播放 YouTube 视频:

函数pywhatkit.playonyt() ,在您的默认浏览器中打开 YouTube 并播放您在函数中提到的视频。如果您将主题名称作为参数传递,它会播放关于该主题的随机视频。在将视频的 URL 作为参数传递时,它会打开该确切的视频。

例子:

Python3

# importing the module
import pywhatkit
 
# using Exception Handling
# to avoid exceptions
try:
   
  # it plays a random YouTube
  # video of GeeksforGeeks
  pywhatkit.playonyt("GeeksforGeeks")
  print("Playing...")
 
except:
   
  # printing the error message
  print("Network Error Occured")

输出:

3. 执行谷歌搜索:

您可以使用以下简单命令执行 Google 搜索。它会打开您的浏览器并搜索您在代码中给出的主题。

例子:

Python3

# importing the module
import pywhatkit
 
# use Try Except to
# handle the Exceptions
try:
   
  # it will perform the Google search
  pywhatkit.search("GeeksforGeeks")
  print("Searching...")
 
except:
   
  # Printing Error Message
  print("An unknown error occured")

输出:

4. 获取特定主题的信息:

我们可以获得有关特定主题的简要信息。我们还可以限制要打印的行数。此外,请确保您正在搜索 Wikipedia 上可用的主题。

例子:

Python3

# importing the module
import pywhatkit
 
# using Exception Handling for
# handling unprecendented errors
try:
   
  # it will perform google search
  pywhatkit.info("Google", lines = 4)
  print("\nSuccessfully Searched")
 
except:
     
  # printing error message
  print("An Unknown Error Occured")

输出: