DLHub-Argonne/dlhub_sdk

wildcard in dl.search applies strangely without advanced=True

isaac-darling opened this issue · 0 comments

I noticed that running the following:

dl = DLHubClient(http_timeout=10)
res = dl.search("*")
print(len(res))

results in: 6
But running this:

dl = DLHubClient(http_timeout=10)
res = dl.search("*", advanced=True)
print(len(res))

results in: 366