diff --git a/jupyter_mentor/core.py b/jupyter_mentor/core.py deleted file mode 100644 index 6552cc5..0000000 --- a/jupyter_mentor/core.py +++ /dev/null @@ -1,7 +0,0 @@ -# AUTOGENERATED! DO NOT EDIT! File to edit: ../nbs/00_core.ipynb. - -# %% auto 0 -__all__ = ['foo'] - -# %% ../nbs/00_core.ipynb 3 -def foo(): pass diff --git a/nbs/00_core.ipynb b/nbs/00_core.ipynb deleted file mode 100644 index 6671b71..0000000 --- a/nbs/00_core.ipynb +++ /dev/null @@ -1,61 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# core\n", - "\n", - "> Fill in a module description here" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#| default_exp core" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#| hide\n", - "from nbdev.showdoc import *" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#| export\n", - "def foo(): pass" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#| hide\n", - "import nbdev; nbdev.nbdev_export()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "python3", - "language": "python", - "name": "python3" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/nbs/nbdevFolder/firstTab.py b/nbs/nbdevFolder/firstTab.py deleted file mode 100644 index eddd9b6..0000000 --- a/nbs/nbdevFolder/firstTab.py +++ /dev/null @@ -1,40 +0,0 @@ -# AUTOGENERATED! DO NOT EDIT! File to edit: ../firstTab.ipynb. - -# %% auto 0 -__all__ = ['FirstTab'] - -# %% ../firstTab.ipynb 2 -import ipywidgets as widgets -from ipywidgets import VBox, HTML, HBox, Label, Tab, Output, Button, Text -from IPython.display import display, clear_output - - -# %% ../firstTab.ipynb 3 -class FirstTab(VBox): - - def __init__(self): - super().__init__() - - # Username input - self.username_label = Label('Username:') - self.username_input = Text(placeholder='Enter username') - - # Password input - self.key_label = Label('API Key:') - self.key_input = Text(placeholder='Enter API key', password=True) - - # Login button - self.login_button = Button(description='Login') - - # Arrange labels and inputs horizontally - self.username_box = HBox([self.username_label, self.username_input]) - self.key_box = HBox([self.key_label, self.key_input]) - - # Arrange widgets vertically - self.children = [ - HTML('

Login

'), # Heading - self.username_box, # Username label and input box - self.key_box, # Password label and input box - HBox([self.login_button], layout={'justify_content': 'flex-end'}), # Login button aligned to the right - ] - diff --git a/nbs/nbdevFolder/fourthTab.py b/nbs/nbdevFolder/fourthTab.py deleted file mode 100644 index f7a731f..0000000 --- a/nbs/nbdevFolder/fourthTab.py +++ /dev/null @@ -1,45 +0,0 @@ -# AUTOGENERATED! DO NOT EDIT! File to edit: ../fourthTab.ipynb. - -# %% auto 0 -__all__ = ['FourthTab'] - -# %% ../fourthTab.ipynb 1 -import ipywidgets as widgets -from ipywidgets import Tab, Output, Button - - -# %% ../fourthTab.ipynb 2 -class FourthTab(widgets.VBox): - - def __init__(self): - # If you forget to call the superconstructor on an extended widget - # you will get an AttributeError: object has no attribute '_model_id' - super().__init__() - - # Using Accordion - # Create accordion containing HTML content - self.using_acc = widgets.Accordion() - # self.using_acc.set_title(0, 'Using this App') - USING_TEXT = ''' - In the Data tab above, you can review the dataset. - In the Selection tab, you can search for and download data of interest. - Once you've selected data, generate plots in the Visualize tab. - ''' - self.using_body = widgets.HTML(USING_TEXT) - self.using_acc.children = (self.using_body, ) - - # Data Souces Accordion - # Create accordion containing HTML content - self.sources_acc = widgets.Accordion() - # self.sources_acc.set_title(0, 'Data Sources') - SOURCES_TEXT = ''' - Land-Ocean Temperature Index - Global Temperature (NASA) - , - GISS Surface Temperature Analysis (NASA) - - This site is based on data downloaded from the following site on 2020-07-14: - Global Mean Estimates based on Land_and Ocean Data (NASA) - ''' - self.sources_body = widgets.HTML(SOURCES_TEXT) - self.sources_acc.children = (self.sources_body, ) diff --git a/nbs/nbdevFolder/secondTab.py b/nbs/nbdevFolder/secondTab.py deleted file mode 100644 index 615a639..0000000 --- a/nbs/nbdevFolder/secondTab.py +++ /dev/null @@ -1,40 +0,0 @@ -# AUTOGENERATED! DO NOT EDIT! File to edit: ../secondTab.ipynb. - -# %% auto 0 -__all__ = ['SecondTab'] - -# %% ../secondTab.ipynb 1 -import ipywidgets as widgets -from ipywidgets import VBox, HTML, HBox, Label, Tab, Output, Button, Text -from IPython.display import display, clear_output -import ipyvuetify as v - - -# %% ../secondTab.ipynb 2 -class SecondTab(widgets.VBox): - - def __init__(self): - super().__init__() - - # Username input - self.username_label = Label('Name:') - self.username_input = Text(placeholder='Enter your name') - - # Password input - self.key_label = Label('Educator:') - self.key_input = Text(placeholder='Enter Your Level', password=True) - - # Next button - self.next_button = Button(description='Next') - - # Arrange labels and inputs horizontally - self.username_box = HBox([self.username_label, self.username_input]) - self.key_box = HBox([self.key_label, self.key_input]) - - # Arrange widgets vertically - self.children = [ - HTML('

User Profile

'), # Heading - self.username_box, # Username label and input box - self.key_box, # Password label and input box - HBox([self.next_button], layout={'justify_content': 'flex-end'}), # Login button aligned to the right - ] diff --git a/nbs/nbdevFolder/thirdTab.py b/nbs/nbdevFolder/thirdTab.py deleted file mode 100644 index 2585072..0000000 --- a/nbs/nbdevFolder/thirdTab.py +++ /dev/null @@ -1,61 +0,0 @@ -# AUTOGENERATED! DO NOT EDIT! File to edit: ../thirdTab.ipynb. - -# %% auto 0 -__all__ = ['ThirdTab'] - -# %% ../thirdTab.ipynb 1 -import ipywidgets as widgets -from ipywidgets import VBox, HBox, HTML, Button, Label, Text, Checkbox, Accordion, FileUpload -from IPython.display import display, clear_output -import ipyvuetify as v - - -# %% ../thirdTab.ipynb 2 -class ThirdTab(VBox): - - def __init__(self): - super().__init__() - - # File Upload button - self.file_upload = FileUpload(accept='', multiple=False) - self.file_upload_button = Button(description='Upload') - - # File viewer (hidden in accordion) - self.file_viewer_accordion = Accordion(children=[HTML('File viewer content')]) - self.file_viewer_accordion.selected_index = None # Hide the accordion content initially - - # Course overview text - self.course_overview_label = Label('Course Overview:') - self.course_overview_text = Text(placeholder='Enter course overview') - - # AI Guidelines text - self.ai_guidelines_label = Label('AI Guidelines:') - - - # Binary features checkboxes - self.step_by_step_checkbox = Checkbox(description='Step-by-Step') - self.metaphor_checkbox = Checkbox(description='Metaphor') - self.hints_checkbox = Checkbox(description='Hints') - self.ai_guided_questions_checkbox = Checkbox(description='AI Guided Questions') - # Add more checkboxes as needed - - # Open-ended response textbox - self.open_ended_label = Label('Open-ended Response:') - self.open_ended_text = Text(placeholder='Enter open-ended response') - - # Next button - self.next_button = Button(description='Next') - - # Arrange widgets vertically - self.children = [ - HTML('

Course Overview

'), # Heading - HBox([self.file_upload, self.file_upload_button]), # File upload button - self.file_viewer_accordion, # File viewer (hidden initially) - self.course_overview_label, self.course_overview_text, # Course overview - self.ai_guidelines_label, # AI Guidelines - VBox([self.step_by_step_checkbox, self.metaphor_checkbox, - self.hints_checkbox, self.ai_guided_questions_checkbox]), # Binary features checkboxes - self.open_ended_label, self.open_ended_text, # Open-ended response - HBox([self.next_button], layout={'justify_content': 'flex-end'}), - ] -