Please enable JavaScript.
Coggle requires JavaScript to display documents.
design patterns, store login credentials, Creational design patterns,…
-
store login credentials
why
-
-
Having the password in a source file where others can see it over your shoulder while you are editing it.
how
-
-
Option 1: SSH
This isn't always an option, but it's probably the best. Your private key is never transmitted over the network, SSH just runs mathematical calculations to prove that you have the right key.
-
-
what
storing passwords and other secrets that a Python program needs to use, particularly a program that needs to run in the background where it can't just ask the user to type in the password.
-
-
-