How to use the tinytag.tinytag.TinyTag.get function in tinytag

To help you get started, we’ve selected a few tinytag examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github devsnd / cherrymusic / tinytag / __init__.py View on Github external
#!/usr/bin/python
# -*- coding: utf-8 -*-
from .tinytag import TinyTag, StringWalker, ID3, Ogg, Wave, Flac


__version__ = '0.8.0'

if __name__ == '__main__':
    print(TinyTag.get(sys.argv[1]))
github devsnd / tinytag / tinytag / __init__.py View on Github external
#!/usr/bin/python
# -*- coding: utf-8 -*-
from .tinytag import TinyTag, TinyTagException, ID3, Ogg, Wave, Flac
import sys


__version__ = '1.2.2'

if __name__ == '__main__':
    print(TinyTag.get(sys.argv[1]))