databases
databases copied to clipboard
Password containing `/` cannot be used (MySQL)
mysql://root:123456../@myhost:3306/mydb
ValueError: Port could not be cast to integer value as '123456..'
@yangsongbai1 you have to escape special character e.g. with urllib.parse.quote_plus
This code works for me fine :)