python 向usb发送指令_Python通过USB串行发送许多短信

本文介绍了如何使用Python通过USB串行接口批量发送短信。首先连接到数据库获取联系人号码,然后利用for循环逐个发送短信。代码示例中展示了如何建立USB连接,设置短信内容并发送,最后断开连接。通过简单的for循环即可实现批量发送功能。
摘要由CSDN通过智能技术生成

I'm really lost now at this part where I need to send sms to multiple recipients.

How do i send an sms to all the contacts i have in my database? Do I use for-loops? Or is there other ways? Please help thank you so much.

This is my SMS code

#!/usr/bin/env python

# -*- coding: utf-8 -*-

import serial

import time

import sys

import MySQLdb as mdb

try:

con = mdb.connect('localhost', 'user', 'password', 'db')

print 'Database connected';

except Exception as e:

sys.exit('Database connection failed')

cur = con.cursor()

cur.execute("Select contacts from dbtable")

con.commit()

number= cur.fetchall()

print number

for item in number:

recipient= recipient+item

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值