示例#1
0
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
# Copyright 2012,2013 Christoph Reiter
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation

"""A simple command line tagger"""

import sys

import quodlibet
from quodlibet.operon import main
from quodlibet import util


if __name__ == "__main__":
    quodlibet.init_cli()
    sys.exit(main(util.argv))
示例#2
0
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
# Copyright 2012,2013 Christoph Reiter
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation

"""A simple command line tagger"""

import sys

from quodlibet.operon import main
from quodlibet.util import set_win32_unicode_argv


if __name__ == "__main__":
    set_win32_unicode_argv()
    sys.exit(main(sys.argv))
示例#3
0
#!/usr/bin/env python3
# Copyright 2012,2013 Christoph Reiter
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.

import sys

from quodlibet.operon import main


if __name__ == "__main__":
    sys.exit(main())
示例#4
0
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
# Copyright 2012,2013 Christoph Reiter
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation
"""A simple command line tagger"""

import sys

from quodlibet.operon import main
from quodlibet.util import set_win32_unicode_argv

if __name__ == "__main__":
    set_win32_unicode_argv()
    sys.exit(main(sys.argv))
示例#5
0
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright 2012,2013 Christoph Reiter
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.

import sys

from quodlibet.operon import main


if __name__ == "__main__":
    sys.exit(main())
示例#6
0
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
# Copyright 2012,2013 Christoph Reiter
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation
"""A simple command line tagger"""

import sys

from quodlibet.operon import main
from quodlibet import util

if __name__ == "__main__":
    sys.exit(main(util.argv))