Compare commits

..

1 Commits
main ... new

Author SHA1 Message Date
user_client2024
4fdd6e4954 System save at 26/09/2024 23:25 by user_client2024 2024-09-26 17:55:54 +00:00
3 changed files with 69 additions and 48 deletions

View File

@ -0,0 +1,33 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"id": "e706cfb0-2234-4c4c-95d8-d1968f656aa0",
"metadata": {},
"outputs": [],
"source": "from tms_data_interface import SQLQueryInterface\n\nclass Scenario:\n\tseq = SQLQueryInterface()\n\n\tdef logic(self, **kwargs):\n\t\t# Write your code here\n"
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.13"
}
},
"nbformat": 4,
"nbformat_minor": 5
}

View File

@ -1,43 +1,33 @@
{ {
"cells": [ "cells": [
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"id": "d8d4ba5c-9ca4-4534-ba73-250211d5152e", "id": "e706cfb0-2234-4c4c-95d8-d1968f656aa0",
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": "from tms_data_interface import SQLQueryInterface\n\nclass Scenario:\n\tseq = SQLQueryInterface()\n\n\tdef logic(self, **kwargs):\n\t\t# Write your code here\n"
"from tms_data_interface import SQLQueryInterface\n", }
"\n", ],
"class Scenario:\n", "metadata": {
" seq = SQLQueryInterface()\n", "kernelspec": {
"\n", "display_name": "Python 3 (ipykernel)",
" def logic(self, **kwargs):\n", "language": "python",
" # Write your code here\n", "name": "python3"
" hi\n", },
" hello" "language_info": {
] "codemirror_mode": {
} "name": "ipython",
], "version": 3
"metadata": { },
"kernelspec": { "file_extension": ".py",
"display_name": "Python 3 (ipykernel)", "mimetype": "text/x-python",
"language": "python", "name": "python",
"name": "python3" "nbconvert_exporter": "python",
}, "pygments_lexer": "ipython3",
"language_info": { "version": "3.8.13"
"codemirror_mode": { }
"name": "ipython", },
"version": 3 "nbformat": 4,
}, "nbformat_minor": 5
"file_extension": ".py", }
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.8"
}
},
"nbformat": 4,
"nbformat_minor": 5
}

View File

@ -7,10 +7,8 @@
from tms_data_interface import SQLQueryInterface from tms_data_interface import SQLQueryInterface
class Scenario: class Scenario:
seq = SQLQueryInterface() seq = SQLQueryInterface()
def logic(self, **kwargs): def logic(self, **kwargs):
# Write your code here # Write your code here
hi
hello