-
Notifications
You must be signed in to change notification settings - Fork 4
[EVERSTEEL]タグ取得・タグ削除のsdk #169
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
Conversation
fastlabel/__init__.py
Outdated
| endpoint = "projects/copy" | ||
| return self.api.post_request(endpoint, payload=payload) | ||
|
|
||
| # Project Tags |
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.
Project Tagsだと、ProjectTagの方を連想してしまいそうなので、別の命名が良さそう
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.
Tagsとかで良さそうな気がする
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.
ありがとうございます。修正しました。
fastlabel/__init__.py
Outdated
| limit: int = 100, | ||
| ) -> list: | ||
| """ | ||
| Returns a list of project tags. |
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.
| Returns a list of project tags. | |
| Returns a list of tags. |
projectはとった方が良いかも
anegawa-j
left a comment
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.

関連PR
・アプリケーション本体:
https://github.com/fastlabel/fastlabel-application/pull/4288
(記載内容は本体PRと同じ)
概要
・APIからプロジェクトのタグを取得できるようにしました。
・以下のパラメータが使用できます。
・keyword
・offset
・limit
・APIからプロジェクトのタグを削除できるようにしました。
・tag_idsのリストを渡して一括で削除します。
テスト