Skip to content
Snippets Groups Projects
Commit 06dfede0 authored by Thomas Edwards's avatar Thomas Edwards
Browse files

initial commit

parent 707e6cd3
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<content url="file://$MODULE_DIR$"> <content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.venv" /> <excludeFolder url="file://$MODULE_DIR$/.venv" />
</content> </content>
<orderEntry type="inheritedJdk" /> <orderEntry type="jdk" jdkName="Python 3.9 (cognistance)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="sourceFolder" forTests="false" />
</component> </component>
</module> </module>
\ No newline at end of file
...@@ -3,5 +3,5 @@ ...@@ -3,5 +3,5 @@
<component name="Black"> <component name="Black">
<option name="sdkName" value="Python 3.9 (cogniStance1)" /> <option name="sdkName" value="Python 3.9 (cogniStance1)" />
</component> </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> </project>
\ No newline at end of file
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<project version="4"> <project version="4">
<component name="ProjectModuleManager"> <component name="ProjectModuleManager">
<modules> <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> </modules>
</component> </component>
</project> </project>
\ No newline at end of file
# This is a sample Python script. from flask import Flask
# Press ⌃R to execute it or replace it with your code. app = Flask(__name__)
# Press Double ⇧ to search everywhere for classes, files, tool windows, actions, and settings.
def print_hi(name): @app.route("/")
# Use a breakpoint in the code line below to debug your script. def home():
print(f'Hi, {name}') # Press ⌘F8 to toggle the breakpoint. return "Hello World!"
# 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/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment