System save at 01/10/2024 13:56 by user_client2024

This commit is contained in:
user_client2024 2024-10-01 08:26:48 +00:00
parent a4dee6c72a
commit f5a2ff4f76
3 changed files with 144 additions and 33 deletions

View File

@ -0,0 +1,61 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 5,
"id": "e706cfb0-2234-4c4c-95d8-d1968f656aa0",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"515137117423803644429980410789004558123659486689659784966832951094733292177381847964722134800160137646898658467293025470746261443401\n"
]
}
],
"source": [
"from tms_data_interface import SQLQueryInterface\n",
"\n",
"class Scenario:\n",
" seq = SQLQueryInterface()\n",
"\n",
" def logic(self, **kwargs):\n",
" pass\n",
" # Write your code herepass\n",
"print(99**66)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "4411189c-e254-4f05-8de7-97f7cc3c743f",
"metadata": {},
"outputs": [],
"source": []
}
],
"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.11.8"
}
},
"nbformat": 4,
"nbformat_minor": 5
}

View File

@ -1,33 +1,61 @@
{ {
"cells": [ "cells": [
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": 5,
"id": "e706cfb0-2234-4c4c-95d8-d1968f656aa0", "id": "e706cfb0-2234-4c4c-95d8-d1968f656aa0",
"metadata": {}, "metadata": {
"outputs": [], "tags": []
"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" },
} "outputs": [
], {
"metadata": { "name": "stdout",
"kernelspec": { "output_type": "stream",
"display_name": "Python 3 (ipykernel)", "text": [
"language": "python", "515137117423803644429980410789004558123659486689659784966832951094733292177381847964722134800160137646898658467293025470746261443401\n"
"name": "python3" ]
}, }
"language_info": { ],
"codemirror_mode": { "source": [
"name": "ipython", "from tms_data_interface import SQLQueryInterface\n",
"version": 3 "\n",
}, "class Scenario:\n",
"file_extension": ".py", " seq = SQLQueryInterface()\n",
"mimetype": "text/x-python", "\n",
"name": "python", " def logic(self, **kwargs):\n",
"nbconvert_exporter": "python", " pass\n",
"pygments_lexer": "ipython3", " # Write your code herepass\n",
"version": "3.8.13" "print(99**66)"
} ]
}, },
"nbformat": 4, {
"nbformat_minor": 5 "cell_type": "code",
} "execution_count": null,
"id": "4411189c-e254-4f05-8de7-97f7cc3c743f",
"metadata": {},
"outputs": [],
"source": []
}
],
"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.11.8"
}
},
"nbformat": 4,
"nbformat_minor": 5
}

22
main.py Normal file
View File

@ -0,0 +1,22 @@
#!/usr/bin/env python
# coding: utf-8
# In[5]:
from tms_data_interface import SQLQueryInterface
class Scenario:
seq = SQLQueryInterface()
def logic(self, **kwargs):
pass
# Write your code herepass
print(99**66)
# In[ ]: