这个问题与this类似,但特定于rust。如何从 URL 读取密码?这主要用于记录目的。
>>> from pip._internal.utils.misc import redact_auth_from_url
>>>
>>> redact_auth_from_url("https://user:[email protected]/path?key=value#hash")
'https://user:****@example.com/path?key=value#hash'
>>> redact_auth_from_url.__doc__
'Replace the password in a given url with ****.'
rust-url
板条箱,但我找不到等效的功能。