static class Daedalus
This class represents Daedalus scripting interface.
Original: Daedalus
Source code in src/pyg2o/classes/daedalus.py
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | |
index(value)
async
staticmethod
This method will get the daedalus symbol index by its name.
Parameters:
* str name: the name of the daedalus symbol.
Returns int:
the daedalus symbol index number.
Source code in src/pyg2o/classes/daedalus.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | |
instance(value)
async
staticmethod
This method will get the all of the daedalus instance variables.
Parameters:
* str instanceName: the name of the daedalus instance.
Returns dict:
the object containing all of the daedalus instance variables.
Source code in src/pyg2o/classes/daedalus.py
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | |
symbol(value)
async
staticmethod
This method will get the daedalus symbol by its name.
Parameters:
* str name: the name of the daedalus symbol.
Returns dict:
the daedalus symbol (empty if there's no symbol with given name)
Source code in src/pyg2o/classes/daedalus.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | |