X-Git-Url: https://git.yukkurigames.com/?p=python-bulletml.git;a=blobdiff_plain;f=bulletml-parse;fp=bulletml-parse;h=6f36ccccc899bce6863ec5d6d492d7029f08095b;hp=0000000000000000000000000000000000000000;hb=069c6c9090ffe4bbe1ea5fcd456f3057e2b452f5;hpb=8b5f536fd3c64a9cfd21f82f3460b64f02bff73b diff --git a/bulletml-parse b/bulletml-parse new file mode 100755 index 0000000..6f36ccc --- /dev/null +++ b/bulletml-parse @@ -0,0 +1,8 @@ +#!/usr/bin/env python + +import sys + +from bulletml import BulletML + +for filename in sys.argv[1:]: + print BulletML(open(filename, "rU"))