Posts by Leonardo Andriolo • 176 points
2 posts
-
6
votes2
answers7935
viewsA: Install specific version of a library with NPM
The command below allows you to install a specific version of a package. npm install <package>@<version> Ex: npm install [email protected] It may fail if the version has not been published in…
npmanswered Leonardo Andriolo 176 -
10
votes1
answer5375
viewsA: How to declare a password (password) input?
You can try using the "getpass". import getpass senha = getpass.getpass("Digite sua senha: ") It will show asterisks when typing the password.