Let's assume you're writing Go, Python, or any other language in which `import` is a reserved keyword. Let's assume also that you're writing a new package, whose purpose is to "import" data.
What do you name this package?
Our team went through this exercise semi-recently, and we're curious about how everyone else would think about it. Here's a (non-exhaustive) list of options we considered: imports, ingest, dataimport, ímport, impørt.
I've called this kind of thing load, initialize, get_all, and so on.
I may also call it something based on where the data is stored if that is important. For example from_csv.
I might also name it based on what it is for. For example load_config.
Whatever seems clearest, and fits best with how the project itself does things.
reply