-
Notifications
You must be signed in to change notification settings - Fork 0
scripting
DaveL17 edited this page Jan 8, 2021
·
6 revisions
You can invoke plugin actions through Python code using the steps outlined below. Each action may be different in the way the method is uses, so it's best to follow the steps for that particular action.
The bundle identifier for the Matplotlib plugin is:
com.fogbert.indigoplugin.bikeShare
You can invoke the Indigo Action item Refresh Bike Data through a simple Python script:
plugin=indigo.server.getPlugin("com.fogbert.indigoplugin.bikeShare")
plugin.executeAction("refresh_bike_data")refresh_bike_data (Required)
If successful, the plugin will write an informational message to the log (you must have debugging set to informational messages for the message to appear in the Indigo Events log.)
Copyright DaveL17 2026 This plugin is distributed under the MIT license; however the author reserves the right to change the license at any time.