Simple situation: Looking to do a file browser dialog in Python, that is text-based.
System: Ubuntu 17.01, Python 3.6
Simple question: Has anyone worked out a module to do this, yet? (be gentle, still new at Python)

What does a text-based dialog look like?
Are you talking about re-implementing the ls
command?
All GUI toolkit can bring up OS native file dialog.
You can look at with TKinter which come with Python.
import tkinter as tk
from tkinter import filedialog
root = tk.Tk()
root.withdraw()
file_path = filedialog.askopenfilename()
print(file_path)
Ok, lets start over ... your responses are acknowledged, but if you will all notice, the original question has not how to do it... it was "Has anyone worked out a module to do this, yet?". I'm trying to avoid re-inventing the wheel, if someone's already figured it out.
