From d76f34bbef1612f9e8ad6492a9489e386c307bd1 Mon Sep 17 00:00:00 2001 From: johanleroy Date: Fri, 12 Sep 2025 14:17:52 +0200 Subject: [PATCH] Init --- .idea/.gitignore | 8 +++ .idea/ENI-Jupyter.iml | 11 ++++ .../inspectionProfiles/profiles_settings.xml | 6 ++ .idea/misc.xml | 7 +++ .idea/modules.xml | 8 +++ .idea/vcs.xml | 6 ++ README.md | 0 requirements.txt | 0 sample.ipynb | 62 +++++++++++++++++++ 9 files changed, 108 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/ENI-Jupyter.iml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 README.md create mode 100644 requirements.txt create mode 100644 sample.ipynb diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/ENI-Jupyter.iml b/.idea/ENI-Jupyter.iml new file mode 100644 index 0000000..87434e3 --- /dev/null +++ b/.idea/ENI-Jupyter.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..8cab9d1 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..08550ff --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e69de29 diff --git a/sample.ipynb b/sample.ipynb new file mode 100644 index 0000000..fce61c9 --- /dev/null +++ b/sample.ipynb @@ -0,0 +1,62 @@ +{ + "cells": [ + { + "metadata": {}, + "cell_type": "markdown", + "source": [ + "# This is a sample Jupyter Notebook\n", + "\n", + "Below is an example of a code cell. \n", + "Put your cursor into the cell and press Shift+Enter to execute it and select the next one, or click 'Run Cell' button.\n", + "\n", + "Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings.\n", + "\n", + "To learn more about Jupyter Notebooks in PyCharm, see [help](https://www.jetbrains.com/help/pycharm/ipython-notebook-support.html).\n", + "For an overview of PyCharm, go to Help -> Learn IDE features or refer to [our documentation](https://www.jetbrains.com/help/pycharm/getting-started.html)." + ], + "id": "8a77807f92f26ee" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-09-12T12:15:22.749333Z", + "start_time": "2025-09-12T12:15:22.745869Z" + } + }, + "cell_type": "code", + "source": "print(\"Hello World!\")\n", + "id": "fbc121e30a2defb3", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hello World!\n" + ] + } + ], + "execution_count": 1 + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +}