Home | History | Annotate | Download | only in command

Lines Matching refs:username

74             self.username = config['username']
107 First we try to read the username/password from $HOME/.pypirc,
109 [distutils] containing username and password entries (both
117 username: fred
128 # see if we can short-cut and get the username/password from the
132 username = self.username
136 username = password = ''
156 # get the username and password
157 while not username:
158 username = raw_input('Username: ')
165 auth.add_password(self.realm, host, username, password)
189 self._store_pypirc(username, password)
196 data['name'] = raw_input('Username: ')