Skip to content

Instantly share code, notes, and snippets.

View rstofi's full-sized avatar

Kistóf Rozgonyi rstofi

  • Budapest, Hungary
View GitHub Profile
@DrDub
DrDub / selectfile.py
Created January 3, 2016 11:44
A file selection class build for ipywidgets without any extra dependencies.
import os
import ipywidgets as widgets
class FileBrowser(object):
def __init__(self):
self.path = os.getcwd()
self._update_files()