Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 248 Bytes

function_imports.rst

File metadata and controls

12 lines (8 loc) · 248 Bytes

Function imports

Calling a function import

products = northwind.functions.GetProductsByRating.parameter('rating', 16).execute()

for prod in products:
    print(prod)