Home | History | Annotate | Download | only in command

Lines Matching refs:username

73             self.username = config['username']
106 First we try to read the username/password from $HOME/.pypirc,
108 [distutils] containing username and password entries (both
116 username: fred
127 # see if we can short-cut and get the username/password from the
131 username = self.username
135 username = password = ''
154 # get the username and password
155 while not username:
156 username = input('Username: ')
163 auth.add_password(self.realm, host, username, password)
187 self._store_pypirc(username, password)
194 data['name'] = input('Username: ')