In a smart contract a function can be declared that will not modify any state variable values. These functions are marked as VIEW functions
function getOwner() external view returns address {
return owner;
}
from glider import *
def query():
props_included = [MethodProp.IS_VIEW]
functions = Functions()\
.with_all_properties(props_included)\
.exec(5)
return functions