Live.Application (runtime)¶
Live 12 — Live Object Model & framework reference (descriptions and signatures).
Functions¶
combine_apcs(...)¶
combine_apcs() -> bool : Returns true if multiple APCs should be combined.
C++ signature :
bool combine_apcs()
encrypt_challenge(...)¶
encrypt_challenge( (int)dongle1, (int)dongle2 [, (int)key_index=0]) -> tuple : Returns an encrypted challenge based on the TEA algortithm
C++ signature :
boost::python::tuple encrypt_challenge(int,int [,int=0])
encrypt_challenge2(...)¶
encrypt_challenge2( (int)arg1) -> int : Returns the UMAC hash for the given challenge.
C++ signature :
int encrypt_challenge2(int)
get_application(...)¶
get_application() -> Application : Returns the application instance.
C++ signature :
TWeakPtr<TPyHandle<ASongApp>> get_application()
get_random_int(...)¶
get_random_int( (int)arg1, (int)arg2) -> int : Returns a random integer from the given range.
C++ signature :
int get_random_int(int,int)
Classes¶
class Application(LomObject)¶
This class represents the Live application.
Properties¶
_live_ptraverage_process_usage- Reports Live's average CPU load.browser- Returns an interface to the browser.canonical_parent- Returns the canonical parent of the application.control_surfaces- Const access to a list of the control surfaces selected in preferences, in the same order.current_dialog_button_count- Number of buttons on the current dialog.current_dialog_message- Text of the last dialog that appeared; Empty if all dialogs just disappeared.number_of_push_apps_running- Returns the number of connected Push apps.open_dialog_count- The number of open dialogs in Live. 0 if not dialog is open.peak_process_usage- Reports Live's peak CPU load.unavailable_features- List of features that are unavailable due to limitations of the current Live edition.view- Returns the applications view component.
Methods¶
View(...)¶
This class represents the view aspects of the Live application.
__init__(...)¶
Raises an exception This class cannot be instantiated from Python
add_average_process_usage_listener(...)¶
add_average_process_usage_listener( (Application)arg1, (object)arg2) -> None : Add a listener function or method, which will be called as soon as the property "average_process_usage" has changed.
C++ signature :
void add_average_process_usage_listener(TPyHandle<ASongApp>,boost::python::api::object)
add_control_surfaces_listener(...)¶
add_control_surfaces_listener( (Application)arg1, (object)arg2) -> None : Add a listener function or method, which will be called as soon as the property "control_surfaces" has changed.
C++ signature :
void add_control_surfaces_listener(TPyHandle<ASongApp>,boost::python::api::object)
add_open_dialog_count_listener(...)¶
add_open_dialog_count_listener( (Application)arg1, (object)arg2) -> None : Add a listener function or method, which will be called as soon as the property "open_dialog_count" has changed.
C++ signature :
void add_open_dialog_count_listener(TPyHandle<ASongApp>,boost::python::api::object)
add_peak_process_usage_listener(...)¶
add_peak_process_usage_listener( (Application)arg1, (object)arg2) -> None : Add a listener function or method, which will be called as soon as the property "peak_process_usage" has changed.
C++ signature :
void add_peak_process_usage_listener(TPyHandle<ASongApp>,boost::python::api::object)
add_unavailable_features_listener(...)¶
add_unavailable_features_listener( (Application)arg1, (object)arg2) -> None : Add a listener function or method, which will be called as soon as the property "unavailable_features" has changed.
C++ signature :
void add_unavailable_features_listener(TPyHandle<ASongApp>,boost::python::api::object)
average_process_usage_has_listener(...)¶
average_process_usage_has_listener( (Application)arg1, (object)arg2) -> bool : Returns true, if the given listener function or method is connected to the property "average_process_usage".
C++ signature :
bool average_process_usage_has_listener(TPyHandle<ASongApp>,boost::python::api::object)
control_surfaces_has_listener(...)¶
control_surfaces_has_listener( (Application)arg1, (object)arg2) -> bool : Returns true, if the given listener function or method is connected to the property "control_surfaces".
C++ signature :
bool control_surfaces_has_listener(TPyHandle<ASongApp>,boost::python::api::object)
get_bugfix_version(...)¶
get_bugfix_version( (Application)arg1) -> int : Returns an integer representing the bugfix version of Live.
C++ signature :
int get_bugfix_version(TPyHandle<ASongApp>)
get_build_id(...)¶
get_build_id( (Application)arg1) -> str : Returns a string identifying the build.
C++ signature :
TString get_build_id(TPyHandle<ASongApp>)
get_document(...)¶
get_document( (Application)arg1) -> Song : Returns the current Live Set.
C++ signature :
TWeakPtr<TPyHandle<ASong>> get_document(TPyHandle<ASongApp>)
get_major_version(...)¶
get_major_version( (Application)arg1) -> int : Returns an integer representing the major version of Live.
C++ signature :
int get_major_version(TPyHandle<ASongApp>)
get_minor_version(...)¶
get_minor_version( (Application)arg1) -> int : Returns an integer representing the minor version of Live.
C++ signature :
int get_minor_version(TPyHandle<ASongApp>)
get_variant(...)¶
get_variant( (Application)arg1) -> str : Returns one of the strings in Live.Application.Variants.
C++ signature :
TString get_variant(TPyHandle<ASongApp>)
get_version_string(...)¶
get_version_string( (Application)arg1) -> str : Returns the full version string of Live.
C++ signature :
TString get_version_string(TPyHandle<ASongApp>)
has_option(...)¶
has_option( (Application)arg1, (object)arg2) -> bool : Returns True if the given entry exists in Options.txt, False otherwise.
C++ signature :
bool has_option(TPyHandle<ASongApp>,TString)
open_dialog_count_has_listener(...)¶
open_dialog_count_has_listener( (Application)arg1, (object)arg2) -> bool : Returns true, if the given listener function or method is connected to the property "open_dialog_count".
C++ signature :
bool open_dialog_count_has_listener(TPyHandle<ASongApp>,boost::python::api::object)
peak_process_usage_has_listener(...)¶
peak_process_usage_has_listener( (Application)arg1, (object)arg2) -> bool : Returns true, if the given listener function or method is connected to the property "peak_process_usage".
C++ signature :
bool peak_process_usage_has_listener(TPyHandle<ASongApp>,boost::python::api::object)
press_current_dialog_button(...)¶
press_current_dialog_button( (Application)arg1, (int)arg2) -> None : Press a button, by index, on the current message box.
C++ signature :
void press_current_dialog_button(TPyHandle<ASongApp>,int)
remove_average_process_usage_listener(...)¶
remove_average_process_usage_listener( (Application)arg1, (object)arg2) -> None : Remove a previously set listener function or method from property "average_process_usage".
C++ signature :
void remove_average_process_usage_listener(TPyHandle<ASongApp>,boost::python::api::object)
remove_control_surfaces_listener(...)¶
remove_control_surfaces_listener( (Application)arg1, (object)arg2) -> None : Remove a previously set listener function or method from property "control_surfaces".
C++ signature :
void remove_control_surfaces_listener(TPyHandle<ASongApp>,boost::python::api::object)
remove_open_dialog_count_listener(...)¶
remove_open_dialog_count_listener( (Application)arg1, (object)arg2) -> None : Remove a previously set listener function or method from property "open_dialog_count".
C++ signature :
void remove_open_dialog_count_listener(TPyHandle<ASongApp>,boost::python::api::object)
remove_peak_process_usage_listener(...)¶
remove_peak_process_usage_listener( (Application)arg1, (object)arg2) -> None : Remove a previously set listener function or method from property "peak_process_usage".
C++ signature :
void remove_peak_process_usage_listener(TPyHandle<ASongApp>,boost::python::api::object)
remove_unavailable_features_listener(...)¶
remove_unavailable_features_listener( (Application)arg1, (object)arg2) -> None : Remove a previously set listener function or method from property "unavailable_features".
C++ signature :
void remove_unavailable_features_listener(TPyHandle<ASongApp>,boost::python::api::object)
show_message(...)¶
show_message( (Application)arg1, (Text)text [, (int)buttons=Application.MessageButtons.OK_BUTTON [, (bool)enable_markup=False [, (bool)show_success_icon=False]]]) -> int : Shows a message box, returning the position of the pressed button.
C++ signature :
int show_message(TPyHandle<ASongApp>,TText [,int=Application.MessageButtons.OK_BUTTON [,bool=False [,bool=False]]])
show_on_the_fly_message(...)¶
show_on_the_fly_message( (Application)arg1, (str)message [, (int)buttons=Application.MessageButtons.OK_BUTTON [, (bool)enable_markup=False [, (bool)show_success_icon=False [, (int)push_dialog_type=Application.PushDialogType.MESSAGE_BOX]]]]) -> int : Same as show_message, but for when there is no predefined Text object.
C++ signature :
int show_on_the_fly_message(TPyHandle<ASongApp>,std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> [,int=Application.MessageButtons.OK_BUTTON [,bool=False [,bool=False [,int=Application.PushDialogType.MESSAGE_BOX]]]])
unavailable_features_has_listener(...)¶
unavailable_features_has_listener( (Application)arg1, (object)arg2) -> bool : Returns true, if the given listener function or method is connected to the property "unavailable_features".
C++ signature :
bool unavailable_features_has_listener(TPyHandle<ASongApp>,boost::python::api::object)
class ControlDescription(instance)¶
Describes a control present in a control surface proxy
Properties¶
idname
Methods¶
__init__(...)¶
init( (object)arg1) -> None :
C++ signature :
void __init__(_object*)
class ControlDescriptionVector(instance)¶
A container for returning control descriptions.
Methods¶
__init__(...)¶
Raises an exception This class cannot be instantiated from Python
append(...)¶
append( (ControlDescriptionVector)arg1, (object)arg2) -> None :
C++ signature :
void append(std::__1::vector<TControlDescription, std::__1::allocator<TControlDescription>> {lvalue},boost::python::api::object)
extend(...)¶
extend( (ControlDescriptionVector)arg1, (object)arg2) -> None :
C++ signature :
void extend(std::__1::vector<TControlDescription, std::__1::allocator<TControlDescription>> {lvalue},boost::python::api::object)
class ControlSurfaceProxy(instance)¶
Represents a control surface running in a different process. For use by M4L
Properties¶
control_descriptionspad_layout- The layout of pads on Push.type_name
Methods¶
__init__(...)¶
Raises an exception This class cannot be instantiated from Python
add_control_values_arrived_listener(...)¶
add_control_values_arrived_listener( (ControlSurfaceProxy)arg1, (object)arg2) -> None : Add a listener function or method, which will be called as soon as the property "control_values_arrived" has changed.
C++ signature :
void add_control_values_arrived_listener(APythonControlSurfaceProxy,boost::python::api::object)
add_midi_received_listener(...)¶
add_midi_received_listener( (ControlSurfaceProxy)arg1, (object)arg2) -> None : Add a listener function or method, which will be called as soon as the property "midi_received" has changed.
C++ signature :
void add_midi_received_listener(APythonControlSurfaceProxy,boost::python::api::object)
add_pad_layout_listener(...)¶
add_pad_layout_listener( (ControlSurfaceProxy)arg1, (object)arg2) -> None : Add a listener function or method, which will be called as soon as the property "pad_layout" has changed.
C++ signature :
void add_pad_layout_listener(APythonControlSurfaceProxy,boost::python::api::object)
control_values_arrived_has_listener(...)¶
control_values_arrived_has_listener( (ControlSurfaceProxy)arg1, (object)arg2) -> bool : Returns true, if the given listener function or method is connected to the property "control_values_arrived".
C++ signature :
bool control_values_arrived_has_listener(APythonControlSurfaceProxy,boost::python::api::object)
enable_receive_midi(...)¶
enable_receive_midi( (ControlSurfaceProxy)arg1, (bool)arg2) -> None :
C++ signature :
void enable_receive_midi(APythonControlSurfaceProxy {lvalue},bool)
fetch_received_midi_messages(...)¶
fetch_received_midi_messages( (ControlSurfaceProxy)arg1) -> tuple :
C++ signature :
boost::python::tuple fetch_received_midi_messages(APythonControlSurfaceProxy {lvalue})
fetch_received_values(...)¶
fetch_received_values( (ControlSurfaceProxy)arg1) -> tuple :
C++ signature :
boost::python::tuple fetch_received_values(APythonControlSurfaceProxy {lvalue})
grab_control(...)¶
grab_control( (ControlSurfaceProxy)arg1, (int)arg2) -> None :
C++ signature :
void grab_control(APythonControlSurfaceProxy {lvalue},int)
midi_received_has_listener(...)¶
midi_received_has_listener( (ControlSurfaceProxy)arg1, (object)arg2) -> bool : Returns true, if the given listener function or method is connected to the property "midi_received".
C++ signature :
bool midi_received_has_listener(APythonControlSurfaceProxy,boost::python::api::object)
pad_layout_has_listener(...)¶
pad_layout_has_listener( (ControlSurfaceProxy)arg1, (object)arg2) -> bool : Returns true, if the given listener function or method is connected to the property "pad_layout".
C++ signature :
bool pad_layout_has_listener(APythonControlSurfaceProxy,boost::python::api::object)
release_control(...)¶
release_control( (ControlSurfaceProxy)arg1, (int)arg2) -> None :
C++ signature :
void release_control(APythonControlSurfaceProxy {lvalue},int)
remove_control_values_arrived_listener(...)¶
remove_control_values_arrived_listener( (ControlSurfaceProxy)arg1, (object)arg2) -> None : Remove a previously set listener function or method from property "control_values_arrived".
C++ signature :
void remove_control_values_arrived_listener(APythonControlSurfaceProxy,boost::python::api::object)
remove_midi_received_listener(...)¶
remove_midi_received_listener( (ControlSurfaceProxy)arg1, (object)arg2) -> None : Remove a previously set listener function or method from property "midi_received".
C++ signature :
void remove_midi_received_listener(APythonControlSurfaceProxy,boost::python::api::object)
remove_pad_layout_listener(...)¶
remove_pad_layout_listener( (ControlSurfaceProxy)arg1, (object)arg2) -> None : Remove a previously set listener function or method from property "pad_layout".
C++ signature :
void remove_pad_layout_listener(APythonControlSurfaceProxy,boost::python::api::object)
send_midi(...)¶
send_midi( (ControlSurfaceProxy)arg1, (tuple)arg2) -> None :
C++ signature :
void send_midi(APythonControlSurfaceProxy {lvalue},boost::python::tuple)
send_value(...)¶
send_value( (ControlSurfaceProxy)arg1, (tuple)arg2) -> None :
C++ signature :
void send_value(APythonControlSurfaceProxy {lvalue},boost::python::tuple)
subscribe_to_control(...)¶
subscribe_to_control( (ControlSurfaceProxy)arg1, (int)arg2) -> None :
C++ signature :
void subscribe_to_control(APythonControlSurfaceProxy {lvalue},int)
unsubscribe_from_control(...)¶
unsubscribe_from_control( (ControlSurfaceProxy)arg1, (int)arg2) -> None :
C++ signature :
void unsubscribe_from_control(APythonControlSurfaceProxy {lvalue},int)
class MessageButtons(enum)¶
Specifies the characteristics of the message box, e.g. which buttons to show.
Methods¶
__init__(self, /, *args, **kwargs)¶
Initialize self. See help(type(self)) for accurate signature.
as_integer_ratio(self, /)¶
Return integer ratio.
Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.
(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)
bit_count(self, /)¶
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
bin(13) '0b1101' (13).bit_count() 3
bit_length(self, /)¶
Number of bits necessary to represent self in binary.
bin(37) '0b100101' (37).bit_length() 6
conjugate(...)¶
Returns self, the complex conjugate of any int.
from_bytes(bytes, byteorder='big', *, signed=False)¶
Return the integer represented by the given array of bytes.
bytes Holds the array of bytes to convert. The argument must either support the buffer protocol or be an iterable object producing bytes. Bytes and bytearray are examples of built-in objects that support the buffer protocol. byteorder The byte order used to represent the integer. If byteorder is 'big', the most significant byte is at the beginning of the byte array. If byteorder is 'little', the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder' as the byte order value. Default is to use 'big'. signed Indicates whether two's complement is used to represent the integer.
to_bytes(self, /, length=1, byteorder='big', *, signed=False)¶
Return an array of bytes representing an integer.
length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is 'big', the most significant byte is at the beginning of the byte array. If byteorder is 'little', the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder' as the byte order value. Default is to use 'big'. signed Determines whether two's complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.
Attributes¶
OK_ACCOUNT_BUTTON=Application.MessageButtons.OK_ACCOUNT_BUTTON- Specifies the characteristics of the message box, e.g. which buttons to show.OK_BUTTON=Application.MessageButtons.OK_BUTTON- Specifies the characteristics of the message box, e.g. which buttons to show.OK_NEW_SET_BUTTON=Application.MessageButtons.OK_NEW_SET_BUTTON- Specifies the characteristics of the message box, e.g. which buttons to show.OK_PURCHASE_BUTTON=Application.MessageButtons.OK_PURCHASE_BUTTON- Specifies the characteristics of the message box, e.g. which buttons to show.OK_RETRY_BUTTON=Application.MessageButtons.OK_RETRY_BUTTON- Specifies the characteristics of the message box, e.g. which buttons to show.SAVE_DONT_SAVE_BUTTON=Application.MessageButtons.SAVE_DONT_SAVE_BUTTON- Specifies the characteristics of the message box, e.g. which buttons to show.denominator=<attribute 'denominator' of 'int' objects>- the denominator of a rational number in lowest termsimag=<attribute 'imag' of 'int' objects>- the imaginary part of a complex numbername=<member 'name' of 'Boost.Python.enum' objects>names={'OK_BUTTON': Application.MessageButtons.OK_BUTTON, 'OK_NEW_SET_BUTTON': Application.MessageButtons.OK_NEW_SET_BUTTON, 'OK_RETRY_BUTTON': Application.MessageBut...- dict() -> new empty dictionarynumerator=<attribute 'numerator' of 'int' objects>- the numerator of a rational number in lowest termsreal=<attribute 'real' of 'int' objects>- the real part of a complex numbervalues={0: Application.MessageButtons.OK_BUTTON, 1: Application.MessageButtons.OK_NEW_SET_BUTTON, 2: Application.MessageButtons.OK_RETRY_BUTTON, 3: Application.Message...- dict() -> new empty dictionary
class PushDialogType(enum)¶
Specifies the dialog type for Push.
Methods¶
__init__(self, /, *args, **kwargs)¶
Initialize self. See help(type(self)) for accurate signature.
as_integer_ratio(self, /)¶
Return integer ratio.
Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.
(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)
bit_count(self, /)¶
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
bin(13) '0b1101' (13).bit_count() 3
bit_length(self, /)¶
Number of bits necessary to represent self in binary.
bin(37) '0b100101' (37).bit_length() 6
conjugate(...)¶
Returns self, the complex conjugate of any int.
from_bytes(bytes, byteorder='big', *, signed=False)¶
Return the integer represented by the given array of bytes.
bytes Holds the array of bytes to convert. The argument must either support the buffer protocol or be an iterable object producing bytes. Bytes and bytearray are examples of built-in objects that support the buffer protocol. byteorder The byte order used to represent the integer. If byteorder is 'big', the most significant byte is at the beginning of the byte array. If byteorder is 'little', the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder' as the byte order value. Default is to use 'big'. signed Indicates whether two's complement is used to represent the integer.
to_bytes(self, /, length=1, byteorder='big', *, signed=False)¶
Return an array of bytes representing an integer.
length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is 'big', the most significant byte is at the beginning of the byte array. If byteorder is 'little', the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder' as the byte order value. Default is to use 'big'. signed Determines whether two's complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.
Attributes¶
MESSAGE_BOX=Application.PushDialogType.MESSAGE_BOX- Specifies the dialog type for Push.OUT_OF_UNLOCKS_DIALOG=Application.PushDialogType.OUT_OF_UNLOCKS_DIALOG- Specifies the dialog type for Push.RENT_TO_OWN_LICENSE_EXPIRED_DIALOG=Application.PushDialogType.RENT_TO_OWN_LICENSE_EXPIRED_DIALOG- Specifies the dialog type for Push.denominator=<attribute 'denominator' of 'int' objects>- the denominator of a rational number in lowest termsimag=<attribute 'imag' of 'int' objects>- the imaginary part of a complex numbername=<member 'name' of 'Boost.Python.enum' objects>names={'MESSAGE_BOX': Application.PushDialogType.MESSAGE_BOX, 'OUT_OF_UNLOCKS_DIALOG': Application.PushDialogType.OUT_OF_UNLOCKS_DIALOG, 'RENT_TO_OWN_LICENSE_EXPIRED_...- dict() -> new empty dictionarynumerator=<attribute 'numerator' of 'int' objects>- the numerator of a rational number in lowest termsreal=<attribute 'real' of 'int' objects>- the real part of a complex numbervalues={0: Application.PushDialogType.MESSAGE_BOX, 5: Application.PushDialogType.OUT_OF_UNLOCKS_DIALOG, 7: Application.PushDialogType.RENT_TO_OWN_LICENSE_EXPIRED_DIALO...- dict() -> new empty dictionary
class UnavailableFeature(enum)¶
int([x]) -> integer int(x, base=10) -> integer
Convert a number or string to an integer, or return 0 if no arguments are given. If x is a number, return x.int(). For floating point numbers, this truncates towards zero.
If x is not a number or if base is given, then x must be a string, bytes, or bytearray instance representing an integer literal in the given base. The literal can be preceded by '+' or '-' and be surrounded by whitespace. The base defaults to 10. Valid bases are 0 and 2-36. Base 0 means to interpret the base from the string as an integer literal.
int('0b100', base=0) 4
Methods¶
__init__(self, /, *args, **kwargs)¶
Initialize self. See help(type(self)) for accurate signature.
as_integer_ratio(self, /)¶
Return integer ratio.
Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.
(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)
bit_count(self, /)¶
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
bin(13) '0b1101' (13).bit_count() 3
bit_length(self, /)¶
Number of bits necessary to represent self in binary.
bin(37) '0b100101' (37).bit_length() 6
conjugate(...)¶
Returns self, the complex conjugate of any int.
from_bytes(bytes, byteorder='big', *, signed=False)¶
Return the integer represented by the given array of bytes.
bytes Holds the array of bytes to convert. The argument must either support the buffer protocol or be an iterable object producing bytes. Bytes and bytearray are examples of built-in objects that support the buffer protocol. byteorder The byte order used to represent the integer. If byteorder is 'big', the most significant byte is at the beginning of the byte array. If byteorder is 'little', the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder' as the byte order value. Default is to use 'big'. signed Indicates whether two's complement is used to represent the integer.
to_bytes(self, /, length=1, byteorder='big', *, signed=False)¶
Return an array of bytes representing an integer.
length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is 'big', the most significant byte is at the beginning of the byte array. If byteorder is 'little', the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder' as the byte order value. Default is to use 'big'. signed Determines whether two's complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.
Attributes¶
denominator=<attribute 'denominator' of 'int' objects>- the denominator of a rational number in lowest termsimag=<attribute 'imag' of 'int' objects>- the imaginary part of a complex numbername=<member 'name' of 'Boost.Python.enum' objects>names={'note_velocity_ranges_and_probabilities': Application.UnavailableFeature.note_velocity_ranges_and_probabilities}- dict() -> new empty dictionarynote_velocity_ranges_and_probabilities=Application.UnavailableFeature.note_velocity_ranges_and_probabilitiesnumerator=<attribute 'numerator' of 'int' objects>- the numerator of a rational number in lowest termsreal=<attribute 'real' of 'int' objects>- the real part of a complex numbervalues={0: Application.UnavailableFeature.note_velocity_ranges_and_probabilities}- dict() -> new empty dictionary
class UnavailableFeatureVector(instance)¶
A container for returning unavailable features.
Methods¶
__init__(...)¶
Raises an exception This class cannot be instantiated from Python
append(...)¶
append( (UnavailableFeatureVector)arg1, (object)arg2) -> None :
C++ signature :
void append(std::__1::vector<NPythonApplication::TUnavailableFeature, std::__1::allocator<NPythonApplication::TUnavailableFeature>> {lvalue},boost::python::api::object)
extend(...)¶
extend( (UnavailableFeatureVector)arg1, (object)arg2) -> None :
C++ signature :
void extend(std::__1::vector<NPythonApplication::TUnavailableFeature, std::__1::allocator<NPythonApplication::TUnavailableFeature>> {lvalue},boost::python::api::object)
class Variants(instance)¶
Holds strings representing what type of Live is running.
Methods¶
__init__(...)¶
Raises an exception This class cannot be instantiated from Python
Attributes¶
BETA='Beta'- str(object='') -> strINTRO='Intro'- str(object='') -> strLITE='Lite'- str(object='') -> strSTANDARD='Standard'- str(object='') -> strSUITE='Suite'- str(object='') -> strTRIAL='Trial'- str(object='') -> str