Exemplo n.º 1
0
def gettags(conf, dlcs, *tags, **opts):
    """Print info about tag.
    """

    if opts['ignore_case']:
        tags = [t.lower() for t in tags]

    for tag in cached_tags(conf, dlcs, opts['keep_cache'])['tags']:
        if tag['tag'] in findtags or \
                (opts['ignore_case'] and tag['tag'].lower() in findtags):
            print jsonwrite(tag)
Exemplo n.º 2
0
def gettags(conf, dlcs, *tags, **opts):

    """Print info about tag.
    """

    if opts['ignore_case']:
        tags = [t.lower() for t in tags]

    for tag in cached_tags(conf, dlcs, opts['keep_cache'])['tags']:
        if tag['tag'] in findtags or \
                (opts['ignore_case'] and tag['tag'].lower() in findtags):
            print jsonwrite(tag)
Exemplo n.º 3
0
def output_prettyjson(data):
    return prettify_json(jsonwrite(data))
Exemplo n.º 4
0
def output_json(data):
    return jsonwrite(data)
Exemplo n.º 5
0
def output_prettyjson(data):
    return prettify_json(jsonwrite(data))
Exemplo n.º 6
0
def output_json(data):
    return jsonwrite(data)
Exemplo n.º 7
0
 def __str__(self):
     if self.type == 'text':
         return self.data
     return jsonwrite(self.data)