1
import way2sms
import requests

q=way2sms.sms('Arjun','xyz')
q.send(9418403783,'Yo their I am arjun')
n=q.msgSentToday()
q.logout()

运行命令时出现以下错误。,我已安装所有必需的模块,但遇到错误。

回溯(最近一次通话最后):文件“C:/Users/my dell/AppData/Local/Programs/Python/Python36-32/records/smssend.py”,第 4 行,在 q=way2sms.sms('Arjun' ,'M9329G') 文件“C:\Users\my dell\AppData\Local\Programs\Python\Python36-32\lib\way2sms.py”,第 17 行,在init self.s=requests.Session() # Session因为我们要维护 cookie AttributeError: module 'requests' has no attribute 'Session'

4

2 回答 2

1

发送短信正常工作。试试这个。

import requests
import json

URL = 'http://www.way2sms.com/api/v1/sendCampaign'
def sendPostRequest(reqUrl):
  req_params = {
  'apikey':'key',
  'secret':'secret',
  'usetype':'stage',
  'phone': 'phone',
  'message':'Hello ',
  }
于 2019-07-25T09:53:28.097 回答
-1

您可以从他们的网站使用 way2sms 的官方 API。它是免费测试密钥的 100% 工作解决方案。有关详细信息,请参阅我的答案 - 通过 way2sms 使用 Python 发送短信

于 2019-02-09T04:07:46.253 回答