Skip to content

Instantly share code, notes, and snippets.

View diramazioni's full-sized avatar

Eli Spizzichino diramazioni

  • Italy (looking for other destination)
View GitHub Profile
@diramazioni
diramazioni / selectfile.py
Created September 23, 2019 17:25 — forked from DrDub/selectfile.py
A file selection class build for ipywidgets without any extra dependencies.
import os
import ipywidgets as widgets
class FileBrowser(object):
def __init__(self, init_path=None):
if init_path:
self.path = os.getcwd()+'/'+init_path
else: