File: file_open_box.py

package info (click to toggle)
python-easygui 0.98.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,492 kB
  • sloc: python: 3,242; makefile: 151; xml: 120
file content (11 lines) | stat: -rw-r--r-- 195 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
__author__ = 'Robert'
"""
from:
http://stackoverflow.com/questions/25087169/python-easygui-cant-select-file

"""
import sys
sys.path.append('..')
import easygui
f = easygui.fileopenbox()
print(f)