-
-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multi-attribute API #202
Multi-attribute API #202
Conversation
It would be nice to support getting an arbitrary set of attributes by an list of names. |
Can you add getting attributes based on a glob pattern? Or would that be another PR? |
Glob patterns are already supported - see |
h5pyd/_hl/attrs.py
Outdated
""" | ||
if use_cache and (pattern or limit or marker): | ||
raise ValueError("use_cache cannot be used with pattern, limit, or marker parameters") | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the effect of use_cache? Doesn't seem like it's really being used for anything.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was initially used to stop the cache from being used with requests that have parameters which affect the result - this is now done in the HttpConn. It can be removed now
No description provided.