All Downloads are FREE. Search and download functionalities are using the official Maven repository.

home.lib.jython.util.UserLookup.py Maven / Gradle / Ivy

There is a newer version: 1.10.2
Show newest version
#This is really just a stub script - you should prepare a local look-up script

class UserLookup:
    def __init__(self):
        pass

    def search(self, data = "admin"):
        return data


if __name__ == "__main__":
    ul = UserLookup()
    uname = ul.search()
    print "User name is: %s" % uname




© 2015 - 2025 Weber Informatics LLC | Privacy Policy