dephell inspect auth

Shows all added credentials.

$ dephell self auth example.com gram "p@ssword"
INFO credentials added (hostname=example.com, username=gram)

$ dephell inspect auth
[
  {
    "hostname": "example.com",
    "password": "p@ssword",
    "username": "gram"
  }
]

Use filters to remove passwords from output:

$ dephell inspect auth --filter="#.hostname+username.each()"
[
  {
    "hostname": "example.com",
    "username": "gram"
  }
]

See also

  1. dephell self auth to add new credentials.
  2. dephell inspect config to show all other params in the config.
  3. Private PyPI repository usage details and examples.