Esempio 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)
Esempio 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)
Esempio n. 3
0
def output_prettyjson(data):
    return prettify_json(jsonwrite(data))
Esempio n. 4
0
def output_json(data):
    return jsonwrite(data)
Esempio n. 5
0
def output_prettyjson(data):
    return prettify_json(jsonwrite(data))
Esempio n. 6
0
def output_json(data):
    return jsonwrite(data)
Esempio n. 7
0
 def __str__(self):
     if self.type == 'text':
         return self.data
     return jsonwrite(self.data)