TypeError:尝试从IoT平台获取数据时,字符串索引必须为整数

时间:2019-06-19 07:09:13

标签: python python-3.x

因此,我正在尝试从使用JSON / REST将数据从该平台传输到您想要的任何内容的平台获取数据。

我正在尝试制作一个使它自动化的Python代码,然后将数据传输到哪里。

对于问题:当我运行代码时,我最终遇到此错误: “ TypeError:字符串索引必须为整数”

我试图使用我在StackOverflow上找到的其他解决方案,但是最终导致更多的错误和崩溃。

有人知道可能是什么问题吗?

    device_names = ['18715472'] # list of devices
    for i, device in enumerate(get_devices(device_names)):
        metered_data = get_metered_data(device_names[i])
        for register in metered_data:
            for value in register['value']: #Error enters here.
                process_value(device, register, value)

0 个答案:

没有答案