原因, MQTT 发布信息,是不能发布 对象的,只能发布 字符串,整形,浮点型这样的 解决方法 self.__mqtt__.publish("computex/iot/5100/DataTransfer", json.dumps(send_msg)) // 将 json 的字典转换成字符串.…
python import 错误 TypeError: 'module' object is not callable 在这里,有 Person.py test.py; 在 test.py 里面 import Person 总是调用方法出错 Person.py class Person: def __init__(self,name): self.name = name print('this name is ',name) def hello(self): print('hello pytho…
在用django框架中遇到一个错误,是模型编写中出的错误 TypeError: coercing to Unicode: need string or buffer, ChatRoom found 解决办法: 我的models.py文件: 在StackOverFlow上找到了回答: 因为我的ChartAccount 中room是外键,所以self.room 指向ChatRoom,不是一个string or buffer. 可改为self.room.name 或者去掉…
创建列表 sample_list = ['a',1,('a','b')] Python 列表操作 sample_list = ['a','b',0,1,3] 得到列表中的某一个值 value_start = sample_list[0] end_value = sample_list[-1] 删除列表的第一个值 del sample_list[0] 在列表中插入一个值 sample_list[0:0] = ['sample value'] 得到列表的长度 list_length = len(sa…
创建列表 sample_list = ['a',1,('a','b')] Python 列表操作 sample_list = ['a','b',0,1,3] 得到列表中的某一个值 value_start = sample_list[0] end_value = sample_list[-1] 删除列表的第一个值 del sample_list[0] 在列表中插入一个值 sample_list[0:0] = ['sample value'] 得到列表的长度 list_length = len(sa…
Error Msg Traceback (most recent call last): File "E:/code/adva_code/my_orm.py", line 108, in <module> user.save() File "E:/code/adva_code/my_orm.py", line 91, in save sql = "insert {}({}) value({})".format(self._meta[&…
原始代码: soup = BeautifulSoup(result, 'html.parser') content_list = soup.find_all('p', attrs={"class": "art_p"}) content = '<br/>'.join(content_list) 报错内容是: Traceback (most recent call last): File "G:/squid_frame/app_spider/spi…
未经允许,禁止转载!!! 在平时写代码的时候经常会用到string和int数据类型的转换 由于java和python在string和int数据类型转换的时候是不一样的 下面总结了java和python在string和int数据类型转换的区别 在 java 中要将 String 类型转化为 int 类型时,需要使用 Integer 类中的 parseInt() 方法或者 valueOf() 方法进行转换. String str = "123"; try { int a = Integer…
Python 数字类型 int float 数字常量 int: 一般的整数, long:   长整型,2.x版本需在数字后加 “L” 或 “l” ,表示长整型 如 100000000L: python3.x 版本后不分长整型,统一为int,不可加 “L” 或 “l” float: 浮点数,1.0 也为浮点数,float 可强制转换为 int,取整: print(type(1234)) print(type(-24)) print(type(0)) print(type(2147483647))…
在python中使用sqlite3数据库存储二进制流数据ByteArray,在django使用sqlite3数据库时,有时候也要注意最好使用二进制流ByteArray插入字符串. 使用ByteArray二进制数据流放入数据库的优势是不需要对字符串中的双引号和单引号等特别字符做处理. python中自带的buffer对象,就可以将str类型的字符串转换为byteArray. 1)重载python的sys,采用utf-8编码,这样将str默认编码改成utf-8 import sys reload(s…
转自:http://blog.csdn.net/business122/article/details/7536991 创建列表 sample_list = ['a',1,('a','b')] Python 列表操作 sample_list = ['a','b',0,1,3] 得到列表中的某一个值 value_start = sample_list[0] end_value = sample_list[-1] 删除列表的第一个值 del sample_list[0] 在列表中插入一个值 samp…
目录 python多版本共存 在cmd窗口进入不同版本的python环境 在pycharm中切换不同的版本 python语法之注释 python变量与常量 变量 变量的本质 变量的命名规范 常量 python基本数据类型(int, float, str, list) 整型int 浮点型float 字符串str 列表list 列表的索引取值 今日编写规范 python多版本共存 现在在市面上有着许多的python版本,并且每个版本都有着区别,有一些python项目无法在新版python中运行,这个…
MQTT 不是普通的 client server 模型,他还加了一个 代理者. 根据剑锋的提示,先下载了 paho-mqtt 模块, ubuntu 14.04 上下载方法如下: sudo apt-get install python-pip sudo pip install paho-mqtt source paho-mqtt/bin/activate sudo apt-get install python-virtualenv virtualenv paho-mqtt 下载 broker 代理…
使用Python库paho.mqtt.client 模拟mqtt client 连接broker,publish topic. #-*-coding:utf-8-*- import paho.mqtt.client as mqtt class mqttHandle(object): def __init__(self,mqtt_info): self.mqtt_info=mqtt_info def on_connect(client, userdata, flags, rc): print("C…
1.安装paho-mqtt 使用Python Package Index (PyPi) pip install paho-mqtt 使用virtualenv virtualenv paho-mqtt source paho-mqtt/bin/activate pip install paho-mqtt 或者编译源代码 git clone https://github.com/eclipse/paho.mqtt.python 使用源码安装 cd paho.mqtt.python python se…
安装paho-mqtt pip install paho-mqtt -i http://pypi.douban.com/simple --trusted-host pypi.douban.com python消息收发实现 import paho.mqtt.client as mqtt from multiprocessing import Process import camera_person_num MQTTHOST = "172.19.4.4" MQTTPORT = 1883 m…
  一.消息队列服务器 这里我用到activemq,可到官网下载 http://activemq.apache.org/ 1. 若遇到点击apache-activemq-5.16.2\bin\activemq.bat 出现闪退,64位系统请点击apache-activemq-5.16.2\bin\win64\activemq.bat,启动mqtt服务器ActiveMQ启动闪退的问题可见 https://blog.csdn.net/pavel101/article/details/79460672…
新手在学习python时候,会遇到很多的坑,下面来具体说说其中一个. 在使用python编写面向对象的程序时,新手可能遇到TypeError: this constructor takes no arguments这个错误. 例如下面的程序: class Ball: def _init_(self,color,size,direction): self.color=color self.size=size self.direction=direction def bounce(self): if…
起因是因为 订阅的时候,获取到的 MQTT 信息时,第一条信息好像是连接信息,所以需要过滤他. 接收到的数据如下 必须要过滤这个 name : 1 的字典,操作如下: def on_message(client, userdata, msg): print(msg.topic+" " + ":" + str(msg.payload)) print(type(msg.payload)) print(json.loads(msg.payload.decode('utf8…
[问题现象] 在一次调用修饰函数中出现了问题,折腾了一下午,一直报错 TypeError:  got multiple values for argument 只是很简单的调用 from tsu2Runner import AndroidActions auto = AndroidActions() auto.log(1, 2, text='应用市场', name='lucy') class AndroidActions(object): def a(self, name, *args, **k…
n = input() if n>=100:print(int(n)/10) else:print(int(n)*10) 报错内容: Traceback (most recent call last): File "1.py", line 12, in <module> if n>=100:print(int(n)/10) TypeError: '>=' not supported between instances of 'str' and 'int'…
源程序: import socket target_host = "www.baidu.com" # 127.0.0.1 target_port = 80 # 建立一个socket对象 client = socket.socket(socket.AF_INET,socket.SOCK_STREAM) # 创建TCP连接 # 连接客户端 client.connect((target_host,target_port)) client.send("GET / HTTP/1.1\r…
贴问题 nums = range(5)#range is a built-in function that creates a list of integers print(nums)#prints "[0,1,2,3,4]" print(nums[2:4])#Get a slice from index 2 to 4 (exclusive); prints '[2,3]" print(nums[2:])#Get a slice from index 2 to the end…
在写继承子类的时候出现了TypeError: super() takes at least 1 argument (0 given)的error: 源代码(python3中完美可运行): class Example(QWidget): def __init__(self): super().__init__() self.initUI() #界面绘制交给InitUi方法 原因是super().__init__()函数在python3中支持,是正确的,但是放到python2中会出现问题: 如果在p…
原因是,python字典的key不支持list类型和dict类型,需要转换 错误时 将list类型强制转换成string,用"".join(list). 修改后:…
出现该错误往往是通过open()函数打开文本文件时,使用了'rb'属性,如:fileHandle=open(filename,'rb'),则此时是通过二进制方式打开文件的,所以在后面处理时如果使用了str()函数,就会出现该错误,该错误不会再python2中出现. 具体解决方法有以下两种: 第一种,在open()函数中使用'r'属性,即文本方式读取,而不是'rb',以二进制文件方式读取,可以直接解决问题. 第二种,在open()函数中使用'rb',可以在使用之前进行转换,有以下实例,来自:htt…
所以在读取字典的时候,最好先判断类型,然后再查看它是否已经有这样的属性: type(mydict) == type({})             #检查不是字典 如果是字典,再看看有没有这样的属性:mydict.has_key('mykey')   1. 看看变量是否是字典   2.检查字典是否有对应的key值  if 'like' in condition: cond_str1 = condition.split('like')[0].strip() cond_str2 = conditio…
一.sys.stdout.write(string) import sys; # sys.stdout.write(): # 1.默认不换行 # 2.参数必须是字符串 # demo 01 x = "[sys.stdout.write() demo 01]I am johnny."; sys.stdout.write(x); # [sys.stdout.write() demo 01]I am johnny. sys.stdout.write([89,667,35,46,54,90,57…
query = "SELECT * FROM devices WHERE devices.`id` LIKE '%{}%'".format("f2333") datas = cur.query(query) 报错: query = query % tuple([db.literal(item) for item in args]) TypeError: not enough arguments for format string 传入query语句拼接出来为 SEL…
在updatev rrdfile时, ret = rrdtool.updatev(filename, ds) 报了argument 0 must be string的异常,经查是因为python 的rrdtool不是用unicode,而传递进来的参数使用了unicode,解决办法很简单 ret = rrdtool.updatev(filename.encode(), ds.encode())…