If you’re lazy (like me lol), just use `pathlib` + `input()` for super basic stuff. Not interactive, but avoids GUIs entirely:
```python
from pathlib import Path
file_path = Path(input("Drag file here: ")).strip()
```
Not fancy, but zero dependencies.
```python
from pathlib import Path
file_path = Path(input("Drag file here: ")).strip()
```
Not fancy, but zero dependencies.
