#! /usr/bin/env python
#
#   lpy
#   a printing tool in python
#
#   2004.5.25
#   Design And Communication inc
#   Copyright (C) H.Nakano
#
#############################################

psyco_flag = 0

if psyco_flag:
    try:
        import psyco
    except:
        psyco_flag = 0

if __name__ == "__main__":
 
    if psyco_flag:
        #psyco.log()
        #psyco.profile()
        psyco.full()
 
    import sys
    import Lpy.lpy_main

    lpy = Lpy.lpy_main.Printer()
    lpy.start(sys.argv[1:])