Export Device list

Posted on
Thu Apr 09, 2015 5:35 pm
Dewster35 offline
Posts: 1030
Joined: Jul 06, 2010
Location: Petoskey, MI

Export Device list

Does anyone know how to export the device list from the indigo server or indigo mac client app? I'm looking for a text file, csv, xml... anything just to be able to get the text in a list that I can then manually pare down and print.

Posted on
Thu Apr 09, 2015 6:33 pm
DaveL17 offline
User avatar
Posts: 6759
Joined: Aug 20, 2013
Location: Chicago, IL, USA

Re: Export Device list

Hi Dewster. Put the following code in a Python script window and execute it.

Code: Select all
for dev in indigo.devices:
   indigo.server.log(unicode(dev.name))

If you want more details about the devices, feel free to post back.
Dave

I came here to drink milk and kick ass....and I've just finished my milk.

[My Plugins] - [My Forums]

Posted on
Thu Apr 09, 2015 8:01 pm
Dewster35 offline
Posts: 1030
Joined: Jul 06, 2010
Location: Petoskey, MI

Re: Export Device list

Thanks Dave! It would also be nice to nab the address and protocol as well?

Posted on
Thu Apr 09, 2015 8:14 pm
DaveL17 offline
User avatar
Posts: 6759
Joined: Aug 20, 2013
Location: Chicago, IL, USA

Re: Export Device list

Absolutely not a problem.

Here you go:
Code: Select all
for dev in indigo.devices:
    indigo.server.log(unicode(dev.name))
    indigo.server.log(unicode(dev.address))
    indigo.server.log(unicode(dev.protocol))
    indigo.server.log(unicode("\n"))

I came here to drink milk and kick ass....and I've just finished my milk.

[My Plugins] - [My Forums]

Posted on
Fri Apr 10, 2015 5:40 pm
Dewster35 offline
Posts: 1030
Joined: Jul 06, 2010
Location: Petoskey, MI

Re: Export Device list

Thanks Dave. Moving and this worked great to get over to a label machine so I can label all my devices.

Posted on
Fri Apr 10, 2015 6:42 pm
DaveL17 offline
User avatar
Posts: 6759
Joined: Aug 20, 2013
Location: Chicago, IL, USA

Re: Export Device list

Glad to help! Good luck with the move.
Dave

I came here to drink milk and kick ass....and I've just finished my milk.

[My Plugins] - [My Forums]

Page 1 of 1

Who is online

Users browsing this forum: No registered users and 9 guests