diff --git a/.idea/cogniStance.iml b/.idea/cogniStance.iml index 2c80e1269497d12e018fd6afa29982e56b0fb70d..2f0a84135ee5589963d729358a91d6e595cc2a32 100644 --- a/.idea/cogniStance.iml +++ b/.idea/cogniStance.iml @@ -4,7 +4,7 @@ <content url="file://$MODULE_DIR$"> <excludeFolder url="file://$MODULE_DIR$/.venv" /> </content> - <orderEntry type="inheritedJdk" /> + <orderEntry type="jdk" jdkName="Python 3.9 (cognistance)" jdkType="Python SDK" /> <orderEntry type="sourceFolder" forTests="false" /> </component> </module> \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index 0e0f6a5be522c097bbb7fe7686b09f0241c277e2..2a818b31bcc76387daee07def9a76691740c2e3d 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -3,5 +3,5 @@ <component name="Black"> <option name="sdkName" value="Python 3.9 (cogniStance1)" /> </component> - <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.9 (cogniStance1)" project-jdk-type="Python SDK" /> + <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.9 (cognistance)" project-jdk-type="Python SDK" /> </project> \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml index b6b1b9ce087b6f00ddecc8f050d782baa1983299..7c52a823d47a8f68d992c37476834fdd1dbca533 100644 --- a/.idea/modules.xml +++ b/.idea/modules.xml @@ -2,7 +2,7 @@ <project version="4"> <component name="ProjectModuleManager"> <modules> - <module fileurl="file://$PROJECT_DIR$/.idea/cogniStance1.iml" filepath="$PROJECT_DIR$/.idea/cogniStance1.iml" /> + <module fileurl="file://$PROJECT_DIR$/.idea/cogniStance.iml" filepath="$PROJECT_DIR$/.idea/cogniStance.iml" /> </modules> </component> </project> \ No newline at end of file diff --git a/main.py b/main.py index 94e3a87232a22efe5c5534e3292a4a7efbaa6381..bd56d2deaade990da065601e5ce8eed454879ee3 100644 --- a/main.py +++ b/main.py @@ -1,16 +1,8 @@ -# This is a sample Python script. +from flask import Flask -# Press ⌃R to execute it or replace it with your code. -# Press Double ⇧ to search everywhere for classes, files, tool windows, actions, and settings. +app = Flask(__name__) -def print_hi(name): - # Use a breakpoint in the code line below to debug your script. - print(f'Hi, {name}') # Press ⌘F8 to toggle the breakpoint. - - -# Press the green button in the gutter to run the script. -if __name__ == '__main__': - print_hi('PyCharm') - -# See PyCharm help at https://www.jetbrains.com/help/pycharm/ +@app.route("/") +def home(): + return "Hello World!"