From dae75cf7c62035f07bca4a9315bde134f2bdd0b8 Mon Sep 17 00:00:00 2001 From: Christian Olsson Date: Thu, 26 Apr 2018 15:42:16 +0200 Subject: [PATCH] Namnbyte --- Pass3/.vscode/launch.json | 116 +++++++++++++++++++ Pass3/{import.py => 1 import.py} | 0 Pass3/{files.py => 2 files.py} | 0 Pass3/{databases.py => 3 databases.py} | 0 Pass3/{graphics.py => 4 graphics.py} | 0 Pass3/{images.py => 5 images.py} | 0 Pass3/{internet.py => 6 internet.py} | 0 Pass3/{gui_example1.py => 7 gui_example1.py} | 0 Pass3/{gui_example2.py => 8 gui_example2.py} | 0 Pass3/{gui_example3.py => 9 gui_example3.py} | 0 10 files changed, 116 insertions(+) create mode 100644 Pass3/.vscode/launch.json rename Pass3/{import.py => 1 import.py} (100%) rename Pass3/{files.py => 2 files.py} (100%) rename Pass3/{databases.py => 3 databases.py} (100%) rename Pass3/{graphics.py => 4 graphics.py} (100%) rename Pass3/{images.py => 5 images.py} (100%) rename Pass3/{internet.py => 6 internet.py} (100%) rename Pass3/{gui_example1.py => 7 gui_example1.py} (100%) rename Pass3/{gui_example2.py => 8 gui_example2.py} (100%) rename Pass3/{gui_example3.py => 9 gui_example3.py} (100%) diff --git a/Pass3/.vscode/launch.json b/Pass3/.vscode/launch.json new file mode 100644 index 0000000..608b4f0 --- /dev/null +++ b/Pass3/.vscode/launch.json @@ -0,0 +1,116 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python: Current File", + "type": "python", + "request": "launch", + "program": "${file}" + }, + { + "name": "Python: Attach", + "type": "python", + "request": "attach", + "localRoot": "${workspaceFolder}", + "remoteRoot": "${workspaceFolder}", + "port": 3000, + "secret": "my_secret", + "host": "localhost" + }, + { + "name": "Python: Terminal (integrated)", + "type": "python", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal" + }, + { + "name": "Python: Terminal (external)", + "type": "python", + "request": "launch", + "program": "${file}", + "console": "externalTerminal" + }, + { + "name": "Python: Django", + "type": "python", + "request": "launch", + "program": "${workspaceFolder}/manage.py", + "args": [ + "runserver", + "--noreload", + "--nothreading" + ], + "debugOptions": [ + "RedirectOutput", + "Django" + ] + }, + { + "name": "Python: Flask (0.11.x or later)", + "type": "python", + "request": "launch", + "module": "flask", + "env": { + "FLASK_APP": "${workspaceFolder}/app.py" + }, + "args": [ + "run", + "--no-debugger", + "--no-reload" + ] + }, + { + "name": "Python: Module", + "type": "python", + "request": "launch", + "module": "module.name" + }, + { + "name": "Python: Pyramid", + "type": "python", + "request": "launch", + "args": [ + "${workspaceFolder}/development.ini" + ], + "debugOptions": [ + "RedirectOutput", + "Pyramid" + ] + }, + { + "name": "Python: Watson", + "type": "python", + "request": "launch", + "program": "${workspaceFolder}/console.py", + "args": [ + "dev", + "runserver", + "--noreload=True" + ] + }, + { + "name": "Python: All debug Options", + "type": "python", + "request": "launch", + "pythonPath": "${config:python.pythonPath}", + "program": "${file}", + "module": "module.name", + "env": { + "VAR1": "1", + "VAR2": "2" + }, + "envFile": "${workspaceFolder}/.env", + "args": [ + "arg1", + "arg2" + ], + "debugOptions": [ + "RedirectOutput" + ] + } + ] +} \ No newline at end of file diff --git a/Pass3/import.py b/Pass3/1 import.py similarity index 100% rename from Pass3/import.py rename to Pass3/1 import.py diff --git a/Pass3/files.py b/Pass3/2 files.py similarity index 100% rename from Pass3/files.py rename to Pass3/2 files.py diff --git a/Pass3/databases.py b/Pass3/3 databases.py similarity index 100% rename from Pass3/databases.py rename to Pass3/3 databases.py diff --git a/Pass3/graphics.py b/Pass3/4 graphics.py similarity index 100% rename from Pass3/graphics.py rename to Pass3/4 graphics.py diff --git a/Pass3/images.py b/Pass3/5 images.py similarity index 100% rename from Pass3/images.py rename to Pass3/5 images.py diff --git a/Pass3/internet.py b/Pass3/6 internet.py similarity index 100% rename from Pass3/internet.py rename to Pass3/6 internet.py diff --git a/Pass3/gui_example1.py b/Pass3/7 gui_example1.py similarity index 100% rename from Pass3/gui_example1.py rename to Pass3/7 gui_example1.py diff --git a/Pass3/gui_example2.py b/Pass3/8 gui_example2.py similarity index 100% rename from Pass3/gui_example2.py rename to Pass3/8 gui_example2.py diff --git a/Pass3/gui_example3.py b/Pass3/9 gui_example3.py similarity index 100% rename from Pass3/gui_example3.py rename to Pass3/9 gui_example3.py