-
Notifications
You must be signed in to change notification settings - Fork 1
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
Add get my data by name, and fix unsubscribe #32
Conversation
e918d2f
to
a645720
Compare
nyx_client/nyx_client/client.py
Outdated
@@ -517,6 +518,30 @@ def get_data( | |||
for resp in resps | |||
] | |||
|
|||
def get_my_data_by_name(self, name: str) -> Data: | |||
"""Retrieve a data based on its unique name. |
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.
- "Retrieve my own data"?
- The name only unique for that organisation
Ah ok - I see you have that below but I think it might be important enough to state in the summary line 🤔
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.
nyx_client/nyx_client/client.py
Outdated
name: The data unique name. | ||
|
||
Returns: | ||
The `Data` instance identified with the provided name. |
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.
Your Data
instance.. ?
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.
0e9c1a8
to
5ac784b
Compare
No description provided.