google-utils
从python脚本的便利使用google!
安装
从pip安装:
pip install google-utils
用法
正在获取链接:
from google_utils import Google
results = Google . search ( "Minecraft" )
for result in results :
print ( result . link )
计算器:
from google_utils import Google
response = Google . calculate ( "64 to the power of six" )
print ( f" { response . question } \n { response . answer } " )
天气检查:
from google_utils i
2022-11-27 02:06:50
21KB
Python
1