Explore >> Select a destination


You are here

florimond.dev
| | janakiev.com
9.2 parsecs away

Travel
| | When writing programs, there is often a large set of configuration and credentials that should not be hard-coded in the program. This also makes the customization of the program much easier and more generally applicable. There are various ways to handle configuration and credentials and you will see here a few of the popular and common ways to do that with Python.
| | 0x00.cl
10.7 parsecs away

Travel
| | Tomas Gutierrez L. personal website (0x00)
| | pythontest.com
11.3 parsecs away

Travel
| | I was asked recently about how to test the argument parsing bit of an application that used argparse. argparse is a built in Python library for dealing with parsing command line arguments for command line interfaces, CLI's. You know, like git clone . git is the application. is a command line argument. clone is a sub-command. Well, that might be a bad example, as I'm not going to use subcommands in my example, but lots of this still applies, even if you are using subcommands.
| | florimond.dev
15.6 parsecs away

Travel
| ChainMap in a nutshell: treat multiple dictionaries as one, unlock Python superpowers.