The first hands-on exercises in module Data Engineer Basics Integrations, Learn to use the Cognite Python SDK, is hard to understand. The task is,
- Use the AssetAPI.search function to find the “Europe” asset (there will be multiple assets with this name in the cdf project, we are looking for the one with id=349354003007241)
The Solution slide simply says to do, `client.assets.search(”Europe”)`. But this gives multiple (two) assets, and the task is specifically to get the one with id=349354003007241. How can I query or filter the CDF to give me specifically this asset? Or is the point here to not do this in the query, but rather get all (both) Europe assets and then filter “offline”, in Python? I think the Solution slide is incomplete.