17 lines
277 B
Python
17 lines
277 B
Python
#!/usr/bin/python3
|
|
|
|
from json import dumps
|
|
from smalltag import SmallTag
|
|
|
|
|
|
test_tag = SmallTag.get("test.mp3")
|
|
print(test_tag)
|
|
|
|
print(test_tag.title)
|
|
test_tag.title = "bTest"
|
|
|
|
test_tag.write()
|
|
|
|
test_tag = SmallTag.get("test.mp3")
|
|
|
|
print(dumps(test_tag.as_dict(), indent=" "))
|