I\'m trying to connect my database using SSL with PyMySQL, but I can\'t find good documentation on what the syntax is.
These credentials work in Workbench and with the C
Thanks for the help everyone. The syntax listed in the question is right, but the server I was attempting a connection to was using a non-standard port. I needed to add
port = db_creds['port']
Thanks, MannyKary, for the clue.