first commi

This commit is contained in:
Johan
2025-12-15 14:50:43 +01:00
commit 057a24afec
11 changed files with 6323 additions and 0 deletions

10
.idea/.gitignore generated vendored Normal file
View File

@@ -0,0 +1,10 @@
# Default ignored files
/shelf/
/workspace.xml
# Ignored default folder with query files
/queries/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
# Editor-based HTTP Client requests
/httpRequests/

View File

@@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

8
.idea/m00_tp01_rappels_python.iml generated Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="jdk" jdkName="Poetry (m00_tp01_rappels_python)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

7
.idea/misc.xml generated Normal file
View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Black">
<option name="sdkName" value="Poetry (m00_tp01_rappels_python)" />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="Poetry (m00_tp01_rappels_python)" project-jdk-type="Python SDK" />
</project>

8
.idea/modules.xml generated Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/m00_tp01_rappels_python.iml" filepath="$PROJECT_DIR$/.idea/m00_tp01_rappels_python.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml generated Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

File diff suppressed because it is too large Load Diff

15
README.md Normal file
View File

@@ -0,0 +1,15 @@
# TP Rappels Python
## Installation
Ouvrir un terminal dans le dossier racine du projet :
```bash
poetry install # installer les éventuelles dépendances nécessaires
```
## Démarage
Lancer le notebook `rappels.ipynb` et suivez les instructions.

3022
poetry.lock generated Normal file

File diff suppressed because it is too large Load Diff

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[project]
name = "tp-rappels-python"
version = "0.1.0"
description = ""
authors = [
{name = "ENI",email = "my@email.com"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"jupyterlab (>=4.4.9,<5.0.0)",
"pandas (>=2.3.3,<3.0.0)",
"matplotlib (>=3.10.6,<4.0.0)"
]
[tool.poetry]
package-mode = false
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"

1614
rappels.ipynb Normal file

File diff suppressed because it is too large Load Diff