Results 3 comments of naonao

纯粹为了解决问题的初学者,标示一定要看懂。向大神学习。

好实用.赶紧试用一下.

You need to url-encode the password portion of the connect string: ``` from urllib.parse import quote_plus password = quote_plus("P@ssw0rd") connection_string = f'postgresql://pt_system:{password}@ps4.mp11.com:5432/triggers' ```