Added album add/remove endpoints
This commit is contained in:
parent
3bd733b229
commit
f8aecde457
13 changed files with 273 additions and 79 deletions
|
@ -11,6 +11,10 @@ from .trovebox_object import TroveboxObject
|
|||
|
||||
class Tag(TroveboxObject):
|
||||
""" Representation of a Tag object """
|
||||
def __init__(self, trovebox, json_dict):
|
||||
TroveboxObject.__init__(self, trovebox, json_dict)
|
||||
self._type = "tag"
|
||||
|
||||
def delete(self, **kwds):
|
||||
"""
|
||||
Endpoint: /tag/<id>/delete.json
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue