Skip to content

get_properties_names(cls)

Get a list of all the names of the properties of a given class. (usefull for copying all variables/parameters of an object programatically with eval)

Parameters

cls : TYPE DESCRIPTION.

Returns

TYPE All properties that are not callable (= most of the existing variables except some dumb variables like the callable ones i created, (like nan_padded_array).

Back to top