Author: dmeyer Date: Fri Dec 29 16:34:04 2006 New Revision: 2304 Added: trunk/beacon/test/show.py
Log: add test script to check db Added: trunk/beacon/test/show.py ============================================================================== --- (empty file) +++ trunk/beacon/test/show.py Fri Dec 29 16:34:04 2006 @@ -0,0 +1,7 @@ +import sys +import kaa.beacon + +kaa.beacon.connect() +file = kaa.beacon.get(sys.argv[1]) +for key in file.keys(): + print key, file[key] ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Freevo-cvslog mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-cvslog
