Hi Team,
I'm excited to be registered for the Data Engineer Basics course, specifically the “Learn to Use the Cognite Python SDK” section!
While working through the “List, Search, Retrieve” portion, I came across an issue. The documentation states that the general pattern for search operations is `client.<cdf_resource_type>.search()`, where `<cdf_resource_type>` could be `data_sets`, `asset`, `time_series`, `events`, `files`, `labels`, and so on.
Following this, I tried the code:
```python
c.data_sets.search()
```
However, it resulted in the following error:
```
AttributeError: 'DataSetsAPI' object has no attribute 'search'
```
I double-checked the Python SDK documentation but couldn't locate a `search()` function for `data_sets`. Could you please let me know if I missed something? And if the `search` function for `data_sets` is indeed unavailable, perhaps it could be noted in the documentation to prevent future confusion?
Thank you for your help and for the informative course!
Best regards,
Sebastian Srikanth Kumar