Upload IOHelperUtilities.py
Browse files- IOHelperUtilities.py +85 -0
IOHelperUtilities.py
ADDED
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# AUTOGENERATED! DO NOT EDIT! File to edit: ../nbs/helper_utilities.ipynb.
|
2 |
+
|
3 |
+
# %% auto 0
|
4 |
+
__all__ = ['check_is_colab', 'MultiFileChooser', 'setup_drives']
|
5 |
+
|
6 |
+
# %% ../nbs/helper_utilities.ipynb 3
|
7 |
+
import ipywidgets as widgets
|
8 |
+
from IPython.display import display, clear_output
|
9 |
+
from functools import partial
|
10 |
+
from ipyfilechooser import FileChooser
|
11 |
+
import os
|
12 |
+
|
13 |
+
# %% ../nbs/helper_utilities.ipynb 4
|
14 |
+
def check_is_colab():
|
15 |
+
"""
|
16 |
+
Check if the current environment is Google Colab.
|
17 |
+
"""
|
18 |
+
try:
|
19 |
+
import google.colab
|
20 |
+
return True
|
21 |
+
except:
|
22 |
+
return False
|
23 |
+
|
24 |
+
# %% ../nbs/helper_utilities.ipynb 7
|
25 |
+
class MultiFileChooser:
|
26 |
+
def __init__(self):
|
27 |
+
self.fc = FileChooser('.')
|
28 |
+
self.fc.title = "Use the following file chooser to add each file individually.\n You can remove files by clicking the remove button."
|
29 |
+
self.fc.use_dir_icons = True
|
30 |
+
self.fc.show_only_dirs = False
|
31 |
+
self.selected_files = []
|
32 |
+
|
33 |
+
self.fc.register_callback(self.file_selected)
|
34 |
+
|
35 |
+
self.output = widgets.Output()
|
36 |
+
|
37 |
+
def file_selected(self, chooser):
|
38 |
+
if self.fc.selected is not None and self.fc.selected not in self.selected_files:
|
39 |
+
self.selected_files.append(self.fc.selected)
|
40 |
+
self.update_display()
|
41 |
+
|
42 |
+
def update_display(self):
|
43 |
+
with self.output:
|
44 |
+
clear_output()
|
45 |
+
for this_file in self.selected_files:
|
46 |
+
remove_button = widgets.Button(description="Remove", tooltip="Remove this file")
|
47 |
+
remove_button.on_click(partial(self.remove_file, file=this_file))
|
48 |
+
display(widgets.HBox([widgets.Label(value=this_file), remove_button]))
|
49 |
+
|
50 |
+
def remove_file(self, button, this_file):
|
51 |
+
if this_file in self.selected_files:
|
52 |
+
self.selected_files.remove(this_file)
|
53 |
+
self.update_display()
|
54 |
+
|
55 |
+
def display(self):
|
56 |
+
display(self.fc, self.output)
|
57 |
+
|
58 |
+
def get_selected_files(self):
|
59 |
+
return self.selected_files
|
60 |
+
|
61 |
+
# %% ../nbs/helper_utilities.ipynb 12
|
62 |
+
def setup_drives(upload_set):
|
63 |
+
|
64 |
+
upload_set = upload_set.lower()
|
65 |
+
uploaded = None
|
66 |
+
|
67 |
+
# allow them to mount the drive if they chose Google Colab.
|
68 |
+
if upload_set == 'google drive':
|
69 |
+
if check_is_colab():
|
70 |
+
from google.colab import drive
|
71 |
+
drive.mount('/content/drive')
|
72 |
+
else:
|
73 |
+
raise ValueError("It looks like you're not on Google Colab. Google Drive mounting is currently only implemented for Google Colab.")
|
74 |
+
|
75 |
+
# Everything else means that they'll need to use a file chooser (including Google Drive)
|
76 |
+
if check_is_colab():
|
77 |
+
from google.colab import files
|
78 |
+
uploaded = files.upload()
|
79 |
+
else:
|
80 |
+
# Create file chooser and interact
|
81 |
+
mfc = MultiFileChooser()
|
82 |
+
mfc.display()
|
83 |
+
uploaded = mfc.get_selected_files()
|
84 |
+
|
85 |
+
return uploaded
|