Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions MainNotebook.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 3,
"source": [
"%load_ext autoreload\r\n",
"%autoreload 2\r\n",
"import nbimporter\r\n",
"from pythonScripts import configuration\r\n",
"\r\n",
"new = configuration.configuration()"
],
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"The autoreload extension is already loaded. To reload it, use:\n",
" %reload_ext autoreload\n",
"hello from configuration script file\n"
]
}
],
"metadata": {}
}
],
"metadata": {
"orig_nbformat": 4,
"language_info": {
"name": "python",
"version": "3.8.10",
"mimetype": "text/x-python",
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"pygments_lexer": "ipython3",
"nbconvert_exporter": "python",
"file_extension": ".py"
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3.8.10 64-bit ('fastai_v1': conda)"
},
"interpreter": {
"hash": "0308564648d0fb8c5277da4c87e5a38bcbf9fc60ff3fd7201abde1cd3f3680b2"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
3 changes: 3 additions & 0 deletions pythonScripts/configuration.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
class configuration():
def __init__(self):
print('hello from configuration script file')