view bin/listsongs @ 1576:ef7ddef3acb5

clean up Painting & Stroke. hover now shows up. add Clear command Ignore-this: 96a6b026ac4020d021e622cc6c5afa1f
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 29 May 2017 08:31:26 +0000
parents a38955ba6f40
children 6fa4288da8a6
line wrap: on
line source

#!bin/python

"""for completion, print the available song uris on stdout

in .zshrc:

function _songs { local expl;  _description files expl 'songs';  compadd "$expl[@]" - `${LIGHT9_SHOW}/../../bin/listsongs` }
compdef _songs curvecalc
"""

from run_local import log
from twisted.internet import reactor
from rdflib import RDF
from light9 import networking
from light9.namespaces import L9
from light9.rdfdb.syncedgraph import SyncedGraph

graph = SyncedGraph(networking.rdfdb.url, "listsongs")

@graph.initiallySynced.addCallback
def printSongs(result):
    with graph.currentState() as current:
        for song in current.subjects(RDF.type, L9['Song']):
            print song
    reactor.stop()

reactor.run()