I wrote a program that interactively allows you to import files directly from your HDD into another python program. When building a new program, you simply call my program, navigator, and it lets you choose a directory and it prints out a numbered list of file:
file a 1
file b 2
file c 3
Then you pick the files you want by number. Say 1 2, then these files are immediately loaded into the program from which you've called this. I wrote this because I do a lot of data analysis in which I need to import many different data files of varying number, and wanted a modular way to do this.
If this is useful, I can post it, but my current version might only work on windows because I've used colors.
Can someone tell me if a program like this already exists?