Home | History | Annotate | Download | only in examples

Lines Matching full:username

8     --username : sets the user name to login with
140 optlist, args = getopt.getopt(sys.argv[1:], 'h?d', ['help','h','?', 'hostname=', 'username=', 'password=', 'port=', 'watch'])
153 username = os.getenv('USER')
166 if '--username' in options:
167 username = options['--username']
168 print "Login for %s@%s:%s" % (username, hostname, port)
183 child.login (hostname, username, password)
289 username:password@hostname:port. All fields are options expcet hostname. A
295 p = re.compile (r'(?P<username>[^@:]*)(:?)(?P<password>.*)(?!\\)@(?P<hostname>[^:]*):?(?P<port>[0-9]*)')
297 p = re.compile (r'(?P<username>)(?P<password>)(?P<hostname>[^:]*):?(?P<port>[0-9]*)')